POST
Rooms.Update
Update a room/resource in The route validates id and allowed room fields, scopes the update to the owner, runs rooms.updated automation, and emits realtime rooms.updated.
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Updates the requested Rooms record after validating permissions and input fields.
Push Service
Pushes event rooms.updated to users who should see this change.
Automation
Runs automation event rooms.updated with the record id and submitted parameters after the action succeeds.
Special Instructions
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
- Send date/time values in UTC Y-m-d H:i:s format when a date or datetime field is used.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
idpost | int | 3710 | Room id to update. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
namepost | string | Room A | Updates room name. |
descriptionpost | string | Main meeting room | Updates short room description. |
citypost | string | Tel Aviv | Updates room city. |
areapost | string | Center | Updates room area. |
pricepost | number | 150.00 | Updates room price when stored. |
max_guestpost | int | 8 | Updates maximum guests/capacity when stored. |
statuspost | int | 1 | Updates active/inactive status when stored. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Rooms.Update",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"id": "3710",
"name": "Room A"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Rooms.Update",
"url_domain": "https:\/\/{domain}\/app\/Rooms.Update"
}Endpoint
POST /app/Rooms.Update
POST https://{user}.bull36.com/app/Rooms.Update
POST https://{domain}/app/Rooms.UpdateSample Output
{
"success": 1,
"id": "3710",
"message": "Record updated successfully.",
"automation_event": "rooms.updated",
"socket_event": "rooms.updated"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({});
// Fill body fields from the Sample Request JSON above.
const res = await fetch('/app/Rooms.Update', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "Record was not found."
}