curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"data": {
"items": [
{
"asset_id": null,
"assigned_to": null,
"bill_of_materials_number": null,
"created_at": null,
"description": null,
"due_date": null,
"id": null,
"parts_required": null,
"priority": null,
"quantity_produced": null,
"status": null,
"title": null,
"updated_at": null
}
],
"limit": 1,
"page": 1,
"total": 1,
"total_pages": 1
},
"errors": null,
"message": null,
"meta": null,
"success": true
}
List work orders with optional filtering
List work orders with optional filtering
GET
/
api
/
v1
/
work-orders
curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"data": {
"items": [
{
"asset_id": null,
"assigned_to": null,
"bill_of_materials_number": null,
"created_at": null,
"description": null,
"due_date": null,
"id": null,
"parts_required": null,
"priority": null,
"quantity_produced": null,
"status": null,
"title": null,
"updated_at": null
}
],
"limit": 1,
"page": 1,
"total": 1,
"total_pages": 1
},
"errors": null,
"message": null,
"meta": null,
"success": true
}
Query parameters
string
string
string
string
string
string
string
integer (int32)
integer (int32)
Responses
ApiResponse_PaginatedResponse_WorkOrderResponse
List work orders
ErrorResponse
Unauthorized
ErrorResponse
Forbidden
curl --request GET \
--url 'https://api.stateset.com/api/v1/work-orders' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"data": {
"items": [
{
"asset_id": null,
"assigned_to": null,
"bill_of_materials_number": null,
"created_at": null,
"description": null,
"due_date": null,
"id": null,
"parts_required": null,
"priority": null,
"quantity_produced": null,
"status": null,
"title": null,
"updated_at": null
}
],
"limit": 1,
"page": 1,
"total": 1,
"total_pages": 1
},
"errors": null,
"message": null,
"meta": null,
"success": true
}
โI