Order Status Details
GET
/orders/statuses/{status_id}This endpoint allows you to fetch details about specific order status by passing the status_id
as a path parameter.
Request
The Status ID. List of Status ID can be found here
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
A unique identifier associated with a specific status assigned to an order.
List of order statuses can be found here
A label or designation given to a specific status assigned to an order. 🌐Support multi-language
The categorization or classification of an order.
A user-friendly and URL-friendly text string associated with a specific order. Note the parent slug is inherited.
A remark that provides information about the current status or condition of an order. 🌐Support multi-language
A specific color code or indicator assigned to different order statuses.
Graphical symbol or image used to represent different order statuses.
The specific numerical or alphanumeric sequence assigned to each order status in a list or database, determining the order in which they are displayed or sorted.
The option to indicate that the Order Status is active.
{
"status": 200,
"success": true,
"data": {
"id": 1638621685,
"name": "تم التنفيذ",
"type": "custom",
"slug": "completed",
"message": "[ {store.name} ] \\n أصبحت حالة طلبك {order.id} {status}",
"color": "#58C9B9",
"icon": "sicon-gold-badge",
"sort": 0,
"is_active": true,
"original": {
"id": 1298199463,
"name": "تم التنفيذ"
},
"parent": null,
"children": [
{
"id": 1422535667,
"name": "جاري التوصيل",
"slug": "delivering",
"type": "custom",
"message": "[ {store.name} ] \\n أصبحت حالة طلبك {order.id} {status}",
"color": "#58C9B9",
"icon": "sicon-shipping",
"sort": 0,
"is_active": true
},
{
"id": 647449340,
"name": "تم التوصيل",
"slug": "delivered",
"type": "custom",
"message": "[ {store.name} ] \\n أصبحت حالة طلبك {order.id} {status}",
"color": "#58C9B9",
"icon": "sicon-party-horn",
"sort": 1,
"is_active": true
},
{
"id": 1887201789,
"name": "تم الشحن",
"slug": "shipped",
"type": "custom",
"message": "[ {store.name} ] \\n أصبحت حالة طلبك {order.id} {status}",
"color": "#58C9B9",
"icon": "sicon-shipping-fast",
"sort": 2,
"is_active": true
}
]
}
}