POST
Order.Catalog.Get
Get one catalog order by id from the orders table (Settings → Order edit pencil). Same as dashboard edit_order. Aliases: Order.Product.Get. Do not confuse with Order.Get, which loads a customer orders_for_cust row.
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 Order.Catalog.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
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
idpost | int | 24 | Catalog orders.id (e.g. 24 or 29 from the Settings Order list). Aliases: order_id, catalog_order_id, product_order_id, data_id. |
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.Catalog.Get",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"id": "24"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Order.Catalog.Get",
"url_domain": "https:\/\/{domain}\/app\/Order.Catalog.Get"
}Endpoint
POST /app/Order.Catalog.Get
POST https://{user}.bull36.com/app/Order.Catalog.Get
POST https://{domain}/app/Order.Catalog.GetSample Output
{
"success": 1,
"message": "Order found",
"data": {
"id": 24,
"order_id": 24,
"name": "הזמנה - מפיקה",
"price": "0",
"min_days": 1,
"order_type": "without_date"
}
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ id: '24' });
const res = await fetch('/app/Order.Catalog.Get', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "No Order found"
}