List Work Orders
/v1/work_order/list
Body
This is the limit of the work orders.
This is the offset of the work orders.
This is the order direction of the work orders.
Response
Number associated with the bill of materials related to the work order
Date and time when the work order was created
Name or identifier of the person who created the work order
Expected completion date for the work order
Unique identifier for the work order
Date when the work order was issued
Location or site where the work order is applicable
Identifier or reference to the manufacturing order associated with the work order
Memo or additional notes related to the work order
Number associated with the work order
Identifier or reference to the order associated with the work order
Part or item associated with the work order
Priority level or urgency of the work order
Site or location where the work order is being executed
Current status or state of the work order
Date and time when the work order was last updated
curl --location --request GET 'https://api.stateset.com/v1/work_order' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"limit": 10,
"offset": 0,
"order_direction": "asc"
}'
{
{
"bill_of_materials_number": "123",
"created_at": "2021-01-01T00:00:00.000Z",
"created_by": "John Doe",
"expected_completion_date": "2021-01-01T00:00:00.000Z",
"id": "wo_123",
"issue_date": "2021-01-01T00:00:00.000Z",
"location": "123",
"manufacture_order": "123",
"memo": "123",
"number": "123",
"order_number": "123",
"part": "123",
"priority": "123",
"site": "123",
"status": "123",
"updated_at": "2021-01-01T00:00:00.000Z",
"work_order_line_items": [
{
"id": "wo_123",
"line_status": "123",
"line_type": "123",
"part_name": "123",
"part_number": "123",
"total_quantity": "123",
"unit_quantity": "123",
"work_order_number": "123"
}
]
}
}
Work Order
Name | Type | Description |
---|---|---|
bill_of_materials_number | Text | Number associated with the bill of materials related to the work order |
created_at | Date/Time | Date and time when the work order was created |
created_by | Text | Name or identifier of the person who created the work order |
expected_completion_date | Date | Expected completion date for the work order |
id | Text | Unique identifier for the work order |
issue_date | Date | Date when the work order was issued |
location | Text | Location or site where the work order is applicable |
manufacture_order | Text | Identifier or reference to the manufacturing order associated with the work order |
memo | Text | Memo or additional notes related to the work order |
number | Text | Number associated with the work order |
order_number | Text | Identifier or reference to the order associated with the work order |
part | Text | Part or item associated with the work order |
priority | Text | Priority level or urgency of the work order |
site | Text | Site or location where the work order is being executed |
status | Text | Current status or state of the work order |
updated_at | Date/Time | Date and time when the work order was last updated |
Work Order Line Items
Name | Type | Description |
---|---|---|
id | Text | Unique identifier for the line item |
line_status | Text | Status or state of the line item |
line_type | Text | Type or category of the line item |
part_name | Text | Name of the part or item included in the line item |
part_number | Text | Number or code associated with the part or item |
total_quantity | Numeric | Total quantity of the part or item required or used in the work order |
unit_quantity | Numeric | Quantity of the part or item required or used per unit in the work order |
work_order_number | Text | Number associated with the work order to which the line item belongs |
curl --location --request GET 'https://api.stateset.com/v1/work_order' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"limit": 10,
"offset": 0,
"order_direction": "asc"
}'
{
{
"bill_of_materials_number": "123",
"created_at": "2021-01-01T00:00:00.000Z",
"created_by": "John Doe",
"expected_completion_date": "2021-01-01T00:00:00.000Z",
"id": "wo_123",
"issue_date": "2021-01-01T00:00:00.000Z",
"location": "123",
"manufacture_order": "123",
"memo": "123",
"number": "123",
"order_number": "123",
"part": "123",
"priority": "123",
"site": "123",
"status": "123",
"updated_at": "2021-01-01T00:00:00.000Z",
"work_order_line_items": [
{
"id": "wo_123",
"line_status": "123",
"line_type": "123",
"part_name": "123",
"part_number": "123",
"total_quantity": "123",
"unit_quantity": "123",
"work_order_number": "123"
}
]
}
}