Contexts
Update a context
Update the data of an existing context. type and id are required fields, data is required. Only the data field is updated, the rest of the context is not affected. If the context does not exist, it returns the 404 response
patch/v2/contexts/{type}/{id}
Path parameters
idstring required
Context ID
typestring required
Context type
Request body
Example request
{
"data": {
"tenantName": "Acme Corp",
"region": "us-east-1",
"settings": {
"theme": "dark"
}
}
}Response
OK