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

Path Parameters

hub_id
string<ulid>
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

first
integer
default:20
after
string
before
string
integration_id
string<ulid>

IntegrationID allows returning only activations for a specific integration.

Response

OK

EndUserActivationPage is a paginated list of Activations for an end user.

totalCount
integer
required
activations
object[]
required
next
string
prev
string