curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"has_more": true,
"next_cursor": null,
"total": 1,
"work_orders": [
{
"bom_id": null,
"created_at": "string",
"id": "string",
"notes": null,
"priority": "string",
"product_id": "string",
"quantity_completed": "string",
"quantity_to_build": "string",
"status": "string",
"work_order_number": "string"
}
]
}
List work orders
List work orders
GET
/
api
/
v1
/
work-orders
curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"has_more": true,
"next_cursor": null,
"total": 1,
"work_orders": [
{
"bom_id": null,
"created_at": "string",
"id": "string",
"notes": null,
"priority": "string",
"product_id": "string",
"quantity_completed": "string",
"quantity_to_build": "string",
"status": "string",
"work_order_number": "string"
}
]
}
Query parameters
string
string
string
string
string
integer (int32)
integer (int32)
string
Cursor for keyset pagination (opaque token from
next_cursor).Responses
WorkOrderListResponse
curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"has_more": true,
"next_cursor": null,
"total": 1,
"work_orders": [
{
"bom_id": null,
"created_at": "string",
"id": "string",
"notes": null,
"priority": "string",
"product_id": "string",
"quantity_completed": "string",
"quantity_to_build": "string",
"status": "string",
"work_order_number": "string"
}
]
}
⌘I