POST

Order.Edit

Update an orders_for_cust row (dashboard setting/orders_for_cust with orders_for_cust_id). Alias: Order.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 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

  • Send orders_for_cust_id (aliases id, data_id). To change catalog product use product_order_id / catalog_order_id (or order_id when it is not the row id).
  • Custom fields merge: existing custom_fields kept, then custom_fields JSON and order-* keys overwrite.
  • Runs update_order automation best-effort.

Required Parameters

NameTypeSampleExplanation
orders_for_cust_id
post
int267974Row id to update.

Optional Parameters

NameTypeSampleWhat it gives
cust_id
post
int108545Customer id (defaults to existing).
total_price
post
string20Total price.
notes
post
stringupdated noteNotes.
order_status
post
int12Status id.
custom_fields
post
json{"order-1731":"opt1,opt2"}Custom field values JSON.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

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

Endpoint

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

Sample Output

{
    "success": 1,
    "orders_for_cust_id": 267974,
    "message": "Order update Successfully"
}

JavaScript Example

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

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

Error Example

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