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>"
}LinkConnectionToEnvironment links an existing connection to a specified 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>"
}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.
LinkConnectionEnvironment is the request payload to link an existing connection to an environment.
This is the ID of the template that the connection is created against.
Created