GET
/
activations
/
{activation_id}
Retrieve an Activation
curl --request GET \
  --url https://platform.versori.com/api/embedded/v1/activations/{activation_id}
{
  "id": "<string>",
  "user": {
    "id": "<string>",
    "externalId": "<string>",
    "displayName": "<string>",
    "hubId": "<string>",
    "primaryConnection": {
      "id": "<string>",
      "name": "<string>",
      "credentials": {
        "action": [
          {
            "id": "<string>",
            "authSchemeConfig": {
              "id": "<string>",
              "description": "<string>",
              "validationMessages": [
                "<any>"
              ],
              "schemeType": "<string>"
            },
            "credential": {
              "id": "<string>",
              "organisationId": "<string>",
              "type": "none",
              "name": "<string>",
              "usages": [
                {}
              ],
              "errors": [
                "<string>"
              ],
              "data": {},
              "expiresAt": "2023-11-07T05:31:56Z"
            }
          }
        ],
        "trigger": [
          {
            "id": "<string>",
            "authSchemeConfig": {
              "id": "<string>",
              "description": "<string>",
              "validationMessages": [
                "<any>"
              ],
              "schemeType": "<string>"
            },
            "credential": {
              "id": "<string>",
              "organisationId": "<string>",
              "type": "none",
              "name": "<string>",
              "usages": [
                {}
              ],
              "errors": [
                "<string>"
              ],
              "data": {},
              "expiresAt": "2023-11-07T05:31:56Z"
            }
          }
        ]
      },
      "variables": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    },
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "hubId": "<string>",
  "integration": {
    "id": "<string>",
    "name": "<string>",
    "imageUrl": "<string>",
    "description": "<string>",
    "variablesSchema": {},
    "isDeployed": true,
    "isActivated": true
  }
}

Path Parameters

activation_id
string<ulid>
required

Response

OK

id
string<ulid>
required
user
object
required
hubId
string<ulid>
required
integration
object
required

EndUserIntegration represents an integration that is available to an end user.

This object is only a summary of the integration and does not contain all the information to enable the user to activate it. The GetEmbeddedIntegration endpoint should be used to retrieve the full integration details.