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

NameTypeSampleExplanation
id
post
int3710Room id to update.

Optional Parameters

NameTypeSampleWhat it gives
name
post
stringRoom AUpdates room name.
description
post
stringMain meeting roomUpdates short room description.
city
post
stringTel AvivUpdates room city.
area
post
stringCenterUpdates room area.
price
post
number150.00Updates room price when stored.
max_guest
post
int8Updates maximum guests/capacity when stored.
status
post
int1Updates 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.Update

Sample 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."
}