Skip to main content
PATCH
/
o
/
{organisation_id}
/
projects
/
{project_id}
/
variables
Patch the schema for the project's dynamic variables
curl --request PATCH \
  --url https://platform.versori.com/api/v2/o/{organisation_id}/projects/{project_id}/variables \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "op": "add",
  "path": "<string>",
  "value": {}
}'
{}

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

DynamicVariablesSchemaPatch is the request body for updating the project's dynamic variables.

op
enum<string>
required
Available options:
add,
remove,
replace
path
string
required

The path to the field to update. This should be a JSON path to the field to update. For example, if you want to update/remove the dynamic variables newVar in the following schema:

{
"type": "object",
"properties": {
"newVar": {
"type": "string"
}
}
}

The path would be /properties/newVar.

value
object

The value to set the field to. This should be valid JSON schema containing the name of the variable, its type and any other properties. An example would be {"newVar": {"type": "string"}}.

Response

OK

DynamicVariablesSchema is the JSON schema for the project's dynamic variables.

I