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>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer token authentication used by the Versori Platform. You must provide a signed JWT provided 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