Get Order by ID

GET/api/orders/{id}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area
curl -X GET "https://yoursite.com/api/orders/123" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

{
  "id": "1",
  "client_id": "2",
  "order_date": "2024-01-15",
  "status_id": "1",
  "note": "",
  "project_id": "0"
}
MethodGET
Path/api/orders/{id}
GroupOrders
Sincev1.0.0
Defined inRestApi/Controllers/OrdersController.php