POST
Statuses.Edit
Update an all_status row by status_id. For Customer Statuses settings rows use CustomerStatuses.Edit.
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.Edit",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"status_id": "123",
"name_en": "Pending"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Statuses.Edit",
"url_domain": "https:\/\/{domain}\/app\/Statuses.Edit"
}Endpoint
POST /app/Statuses.Edit
POST https://{user}.bull36.com/app/Statuses.Edit
POST https://{domain}/app/Statuses.EditSample Output
{
"success": 1,
"message": "Statuses.Edit 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"
}