List work orders
GET/work-orders
Returns a paginated list of production work orders. Each entry includes the SKU being produced, customer, quantity, batch count, scheduling dates, priority, and status. Filter by status, SKU, customer, date range, or linked sales order number to find specific production runs.
Request
Response
- 200
- 400
- 401
Paginated work orders
Bad request — invalid parameters
Unauthorized — missing or invalid API key
Response
{
"data": [
{
"id": "6073",
"orderNumber": "WO-2025-0312",
"skuId": null,
"skuName": "Roasted Garlic Hummus",
"customerId": null,
"customerName": "Sunrise Craft Beverages",
"quantity": 500,
"unit": "lbs",
"numberOfBatches": 1,
"batchVolume": 500,
"orderDate": "2025-03-01",
"dueDate": "2025-03-15",
"priority": "medium",
"status": "completed",
"salesOrderReference": "SO-2025-0189",
"notes": null
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}