GET
/
embed
/
{hub_id}
/
users
/
{user_id}
/
integrations
curl --request GET \
  --url https://platform.versori.com/api/embedded/v1/embed/{hub_id}/users/{user_id}/integrations
{
  "totalCount": 123,
  "next": "<string>",
  "prev": "<string>",
  "integrations": [
    {
      "id": "<string>",
      "name": "<string>",
      "imageUrl": "<string>",
      "description": "<string>",
      "variablesSchema": {},
      "isDeployed": true,
      "isActivated": true
    }
  ],
  "totalConnected": 123
}

Path Parameters

hub_id
string
required
user_id
string
required

UserID references an End User in the Hub.

Most APIs support setting this value to either the internal Versori identifier or their external ID as determined by the organisation. The identifier_type query parameter is used to indicate which type of ID is being used.

Query Parameters

identifier_type
enum<string>
default:external

IdentifierType indicates whether the user_id path parameter is a internal identifier created by Versori, or an external identifier. If the value is external, some endpoints also require the hub query parameter to identify the correct Hub.

Available options:
internal,
external
deployed
boolean

Deployed allowing filtering integrations to only return either deployed (true) or not deployed (false) integrations.

If not set, all integrations are returned.

Response

200
application/json
OK

EndUserIntegrationPage is a paginated list of integrations to be displayed to the user when embedding the integration hub.