curl --request PUT \
--url https://platform.versori.com/api/v2/o/{organisation_id}/environments/{environment_id}/activations/{activation_id}/variables/{variable_name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"value": {}
}'{}Updates a single dynamic variable identified by name for the specified activation. This endpoint is designed to support the SDK’s ability to update individual variables with a friendly, descriptive API for error handling.
curl --request PUT \
--url https://platform.versori.com/api/v2/o/{organisation_id}/environments/{environment_id}/activations/{activation_id}/variables/{variable_name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"value": {}
}'{}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.
The name of the dynamic variable to update
The new value for the variable (can be any JSON type)
Variable updated successfully
The response is of type object.