Authorizations
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.
Body
DynamicVariablesSchemaPatch is the request body for updating the project's dynamic variables.
add, remove, replace 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.
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.