Docs
get https://api.console.iugu.com/apps/list_published

Published apps

Returns a list of apps published by the provided workspace

Sem ações implementadas definidas

Request

Query params

workspace_id

Required

Type: string

The unique identifier of the workspace

Ex: abcd1234efgh5678ijkl

Response

200

Success

id
String

App identifier (unique app ID).

Ex: 3W3pZX7CxbPGjC8WDTmunA

name
String

App name.

Ex: First

service_api_url
String

The URL used to access the app's service API.

Ex: https://test.com

entitlements
Array

Enabled entitlements for the app.

Ex: ["activity_consumer", "workflow_provider", "embedding_provider"]

blocked
Boolean

Indicates if the app is blocked.

billable
Boolean

Indicates if the app is billable.

Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[
  {
    "id": "3W3pZX7CxbPGjC8WDTmunA",
    "name": "First",
    "service_api_url": "https://test.com",
    "entitlements": [
      "activity_consumer",
      "workflow_provider",
      "embedding_provider"
    ],
    "blocked": false,
    "billable": false
  }
]

400

Bad Request

status
String

Error description.

Ex: Missing workspace id parameter

Example
1
2
3
{
  "status": "Missing workspace id parameter"
}

401

Unauthorized

error
String

Error type.

Ex: JWT::ExpiredSignature

error_description
String

Error description.

Ex: Signature has expired

Example
1
2
3
4
{
  "error": "JWT::ExpiredSignature",
  "error_description": "Signature has expired"
}