POST
Rooms.Count
Return the number of rooms/resources matching optional filters.
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
- Returns only the count for Rooms using the same filters as the list function.
Push Service
No push is sent because this function only reads data or returns helper information.
Automation
No automation is run for this function.
Special Instructions
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
Required Parameters
No body parameters are required for this function.
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
searchpost | string | main | Counts rooms matching this text. |
citypost | string | Tel Aviv | Counts rooms in this city. |
areapost | string | Center | Counts rooms in this area. |
statuspost | int | 1 | Counts rooms by 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.Count",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"city": "Tel Aviv"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Rooms.Count",
"url_domain": "https:\/\/{domain}\/app\/Rooms.Count"
}Endpoint
POST /app/Rooms.Count
POST https://{user}.bull36.com/app/Rooms.Count
POST https://{domain}/app/Rooms.CountSample Output
{
"success": 1,
"count": 4
}Count Only
Use the matching count route with the same filters when the UI only needs total rows for paging.
{
"url": "\/app\/Rooms.Count",
"url_user": "https:\/\/{user}.bull36.com\/app\/Rooms.Count",
"url_domain": "https:\/\/{domain}\/app\/Rooms.Count",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"city": "Tel Aviv"
},
"sample_output": {
"success": 1,
"count": 123
},
"notes": {
"count": "Total number of rooms matching the same filters accepted by Rooms.List."
}
}Count JavaScript
const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('city', 'Tel Aviv');
const res = await fetch('https://{domain}/app/Rooms.Count', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` },
body
});
const data = await res.json();
console.log(data.count);JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ city: 'Tel Aviv' });
const res = await fetch('/app/Rooms.Count', {
method: 'POST',
headers: { Authorization: 'Bearer ' + token },
body
});
const data = await res.json();
console.log(data);Error Example
{
"success": "0",
"error": "bearer_token_required",
"message": "Authorization bearer token is required. Send header: Authorization: Bearer YOUR TOKEN"
}