curl --request GET \
--url https://platform.versori.com/api/embedded/v1/embed/{hub_id}/users/{user_id}/activations \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"activations": [
{
"id": "<string>",
"hubId": "<string>",
"integration": {
"id": "<string>",
"name": "<string>",
"imageUrl": "<string>",
"description": "<string>",
"isDeployed": true,
"isActivated": true,
"variablesSchema": {}
}
}
],
"next": "<string>",
"prev": "<string>"
}ListEndUserActivations returns all activations which are available to the given End User. This API can be filtered to only return activations for a given integration.
curl --request GET \
--url https://platform.versori.com/api/embedded/v1/embed/{hub_id}/users/{user_id}/activations \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"activations": [
{
"id": "<string>",
"hubId": "<string>",
"integration": {
"id": "<string>",
"name": "<string>",
"imageUrl": "<string>",
"description": "<string>",
"isDeployed": true,
"isActivated": true,
"variablesSchema": {}
}
}
],
"next": "<string>",
"prev": "<string>"
}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.
IntegrationID allows returning only activations for a specific integration.