Skip to main content
POST
/
o
/
{organisation_id}
/
connections
/
{connection_id}
/
link
Link an existing connection to an environment
curl --request POST \
  --url https://platform.versori.com/api/v2/o/{organisation_id}/connections/{connection_id}/link \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "connectionTemplateId": "<string>"
}
'
{
  "code": "<string>",
  "message": "<string>",
  "fields": [
    {
      "field": "<string>",
      "message": "<string>"
    }
  ],
  "details": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.versori.com/llms.txt

Use this file to discover all available pages before exploring further.

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
connection_id
string<ulid>
required

Body

application/json

LinkConnectionEnvironment is the request payload to link an existing connection to an environment.

connectionTemplateId
string<ulid>
required

This is the ID of the template that the connection is created against.

Response

Created