Variable (PUT)
Replaces a context variable. The response is empty.
Request
PUT /v1/contexts/{contextPath}/variables/{variable}
Replace {contextPath}
with a full context path.
![]() | For the Root Context, use |
Replace {variable}
with a variable name.
Request Header Fields
Authorization — Authentication token. For more information about authentication, see Authenticating.
Request Body
New value for the context variable.
Example Request
Request:
PUT https://localhost:8443/rest/v1/contexts/users.admin.models.example/variables/exampleTable
Example request body JSON:
[
{
"name": "Room_1",
"description": "Machinery Storage"
},
{
"name": "Room_2",
"description": "Workshop"
}
]
Was this page helpful?