POST
Statuses.Update
Alias of Statuses.Edit for all_status rows.
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 Statuses record after validating permissions and input fields.
Push Service
Pushes event statuses.edit.updated to users who should see this change.
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.
- 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 |
|---|---|---|---|
status_idpost | int | 123 | all_status id. Alias: id. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
name_enpost | string | Pending | English label. |
name_hepost | string | ממתין | Hebrew label. |
colorpost | string | #2490ef | Status color. |
status_orderpost | int | 1 | Sort order. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Statuses.Update",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"status_id": "123",
"name_en": "Pending"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Statuses.Update",
"url_domain": "https:\/\/{domain}\/app\/Statuses.Update"
}Endpoint
POST /app/Statuses.Update
POST https://{user}.bull36.com/app/Statuses.Update
POST https://{domain}/app/Statuses.UpdateSample Output
{
"success": 1,
"message": "Statuses.Update updated",
"id": "123",
"socket_event": "statuses.edit.updated"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ status_id: '123', name_en: 'Pending' });
const res = await fetch('/app/Statuses.Edit', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Missing required parameter: status_id"
}