GET
/
o
/
{organisation_id}
/
connectors
/
{connector_id}
/
connections
/
{connection_id}
Get Connection
curl --request GET \
  --url https://platform.versori.com/api/connect/v1/o/{organisation_id}/connectors/{connector_id}/connections/{connection_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "credentials": {
    "action": [
      {
        "id": "<string>",
        "authSchemeConfig": {
          "id": "<string>",
          "description": "<string>",
          "validationMessages": [
            {
              "text": "<any>",
              "severity": "<any>",
              "detail": "<any>"
            }
          ],
          "schemeType": "<string>"
        },
        "credential": {
          "id": "<string>",
          "organisationId": "<string>",
          "type": "none",
          "name": "<string>",
          "usages": [
            {
              "connection": {}
            }
          ],
          "errors": [
            "<string>"
          ],
          "data": {},
          "expiresAt": "2023-11-07T05:31:56Z"
        }
      }
    ],
    "trigger": [
      {
        "id": "<string>",
        "authSchemeConfig": {
          "id": "<string>",
          "description": "<string>",
          "validationMessages": [
            {
              "text": "<any>",
              "severity": "<any>",
              "detail": "<any>"
            }
          ],
          "schemeType": "<string>"
        },
        "credential": {
          "id": "<string>",
          "organisationId": "<string>",
          "type": "none",
          "name": "<string>",
          "usages": [
            {
              "connection": {}
            }
          ],
          "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"
}

Authorizations

Authorization
string
header
required

Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.

Path Parameters

organisation_id
string<ulid>
required
connector_id
string<ulid>
required

ID is the unique identifier of the Connector.

connection_id
string<ulid>
required

Response

200
application/json

OK

Connection defines the Action and Trigger credentials for the owning Connector, and additional variables which can be used to customize the Connector in a particular connection.