Edit room
Parameters | ||
---|---|---|
siteId | - | |
roomId | - |
Request #1
Headers | |
---|---|
Content-Type | application/json |
Accept | application/json |
Authorization | Bearer `Your Access Token` |
{
"spaceId": "b2cba611-c46c-4dfe-8fb0-53754c13f66e",
"name": "Room #9"
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"spaceId": {
"type": "string"
}
},
"required": [
"name",
"spaceId"
]
}