POST

Customer.Orders.Get

Get one orders_for_cust row owned by the logged-in customer. Staff equivalent: Order.Get (requires cust_id match via JWT here).

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

  • Runs the Customer.Orders.Get function and returns JSON.

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

  • Requires Customer.Login token and module_orders. Row must belong to JWT c_id.

Required Parameters

NameTypeSampleExplanation
orders_for_cust_id
post
int267974Row id. Aliases: id, data_id, order_row_id.

Optional Parameters

NameTypeSampleWhat it gives
lang
post
stringenStatus label language.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Customer.Orders.Get",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "orders_for_cust_id": "267974"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Orders.Get",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Orders.Get"
}

Endpoint

POST /app/Customer.Orders.Get
POST https://{user}.bull36.com/app/Customer.Orders.Get
POST https://{domain}/app/Customer.Orders.Get

Sample Output

{
    "success": 1,
    "data": {
        "id": 267974,
        "order_name": "Monthly plan",
        "paid_status_label": "Unpaid",
        "order_status_label": "Open",
        "custom_fields": []
    }
}

JavaScript Example

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

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

Error Example

{
    "success": 0,
    "message": "No_data_found"
}