POST
DocumentStatuses.Edit
Update a Document Status by id. Same fields as DocumentStatuses.Add. Alias: DocumentStatuses.Update.
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 DocumentStatuses record after validating permissions and input fields.
Push Service
Pushes event documentstatuses.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 |
|---|---|---|---|
document_status_idpost | int | 3453 | Row id. Aliases: status_id, id, all_document_status_id. |
name_enpost | string | In Production | English name. Alias: all_document_statuses_en. |
name_hepost | string | In Production | Hebrew name. Alias: all_document_statuses_he. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
colorpost | string | #c48bb8 | Color hex. |
type_forpost | string | purchase_orders | type_for. Default purchase_orders. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/DocumentStatuses.Edit",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"document_status_id": "3453",
"name_en": "In Production",
"name_he": "In Production",
"color": "#c48bb8"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/DocumentStatuses.Edit",
"url_domain": "https:\/\/{domain}\/app\/DocumentStatuses.Edit"
}Endpoint
POST /app/DocumentStatuses.Edit
POST https://{user}.bull36.com/app/DocumentStatuses.Edit
POST https://{domain}/app/DocumentStatuses.EditSample Output
{
"success": 1,
"message": "Your document status is updated",
"document_status_id": 3453,
"socket_event": "documentstatuses.edit.updated"
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ document_status_id: '3453', name_en: 'In Production', name_he: 'In Production', color: '#c48bb8' });
const res = await fetch('/app/DocumentStatuses.Edit', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Document status not found"
}