Query Parameters
Available options:
internal, external 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
}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{
"totalCount": 123,
"next": "<string>",
"prev": "<string>",
"integrations": [
{
"id": "<string>",
"name": "<string>",
"imageUrl": "<string>",
"description": "<string>",
"variablesSchema": {},
"isDeployed": true,
"isActivated": true
}
],
"totalConnected": 123
}internal, external