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

NameTypeSampleExplanation
status_id
post
int123all_status id. Alias: id.

Optional Parameters

NameTypeSampleWhat it gives
name_en
post
stringPendingEnglish label.
name_he
post
stringממתיןHebrew label.
color
post
string#2490efStatus color.
status_order
post
int1Sort 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.Update

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