Get Order by ID
GET/api/orders/{id}
Headers
| Field | Type | Description |
|---|---|---|
| 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"
}