POST
/
o
/
{organisation_id}
/
projects
/
{project_id}
/
systems
Add a system to a project environment
curl --request POST \
  --url https://platform.versori.com/api/v2/o/{organisation_id}/projects/{project_id}/systems \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "systemId": "<string>",
  "name": "<string>",
  "environmentId": "<string>",
  "dynamic": true
}'
This response does not have an example.

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

Body

application/json
systemId
string<ulid>
required

ID of the system to add the project environment.

name
string
required

How you will reference your system from the SDK.

environmentId
string<ulid>

The environment to link the system to.

dynamic
boolean

If the connections to the system need to be dynamic or static. Dynamic connections are used when the integration runs for multiple end users. Defaults to false if not set.

Response

OK