POST

Order.Status

Update Order Status on a list row (dashboard expences/update_order_status).

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 Order record after validating permissions and input fields.

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

  • orders_for_cust_id is the list row id. Dashboard posts this as order_id — accepted as alias.
  • order_val is the all_status id (type=order_status). Aliases: order_status, status, value.
  • Use Order.Statuses for dropdown options.

Required Parameters

NameTypeSampleExplanation
orders_for_cust_id
post
int267974Row id. Aliases: id, data_id, order_id.
order_val
post
int12Status id. Aliases: order_status, status, value. Use 0 to clear.

Optional Parameters

No optional body parameters are defined for this function.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Order.Status",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "orders_for_cust_id": "267974",
        "order_val": "12"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Order.Status",
    "url_domain": "https:\/\/{domain}\/app\/Order.Status"
}

Endpoint

POST /app/Order.Status
POST https://{user}.bull36.com/app/Order.Status
POST https://{domain}/app/Order.Status

Sample Output

{
    "success": 1,
    "message": "Success",
    "order_val": 12,
    "orders_for_cust_id": 267974
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('orders_for_cust_id', '267974');
body.set('order_val', '12');

const res = await fetch('/app/Order.Status', {
  method: 'POST',
  headers: { Authorization: `Bearer ${token}` },
  body
});
const data = await res.json();
console.log(data);

Error Example

{
    "success": "0",
    "message": "Request failed"
}