curl --request GET \
--url https://platform.versori.com/api/embedded/v1/embed/{hub_id}/users/{user_id}/integrations \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"integrations": [
{
"id": "<string>",
"name": "<string>",
"imageUrl": "<string>",
"description": "<string>",
"isDeployed": true,
"isActivated": true,
"variablesSchema": {}
}
],
"next": "<string>",
"prev": "<string>",
"totalConnected": 123
}ListEndUserIntegrations returns all integrations which are available to the given End User.
This API should be used to populate the embedded UI with the integrations that the end user can activate.
If the user_id is referencing the external ID of the user, then the hub query parameter is required in order
to identify the correct Hub to retrieve the integrations from.
curl --request GET \
--url https://platform.versori.com/api/embedded/v1/embed/{hub_id}/users/{user_id}/integrations \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"integrations": [
{
"id": "<string>",
"name": "<string>",
"imageUrl": "<string>",
"description": "<string>",
"isDeployed": true,
"isActivated": true,
"variablesSchema": {}
}
],
"next": "<string>",
"prev": "<string>",
"totalConnected": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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.
Deployed allowing filtering integrations to only return either deployed (true) or not deployed (false)
integrations.
If not set, all integrations are returned.
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.
internal, external OK
EndUserIntegrationPage is a paginated list of integrations to be displayed to the user when embedding the integration hub.
Show child attributes
TotalConnected is the total number of integrations that are connected for the end user. This can be used to display a badge on the embedded integration hub to show the user how many integrations they have connected.