input CreateWorkOrderInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers. |
warehouse_id | String! | Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects. |
requested_date | DateTime! | Requested date in ISO-8601 date or datetime format, returned in UTC when time is included. |
name | String | Human-readable name for this work order. |
packing_details | String | Packing details for this work order. |
assembly_details | String | Assembly details for this work order. |
type | WorkOrderType! | Type for this work order. |
instructions | String | Instructions for this work order. |
create_special_project | Boolean | Whether to create a special project for this work order. |
priority | WorkOrderPriority | Priority for this work order. |
attachments | [WorkOrderAttachmentType] | List of attachments associated with this work order. |
assembly_sku | AssemblySKUType | Assembly sku. SKU matching is case-insensitive and ignores surrounding whitespace. |
Referenced By
- work_order_create Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"requested_date": "2026-07-09T15:30:00Z",
"name": "Build Blue Tee Bundle",
"packing_details": "Pack finished units into the 12x10x4 Box.",
"assembly_details": "Assemble 2 BLUE-TEE-M units into a bundle.",
"type": "ASSEMBLY",
"instructions": "Customer requested expedited handling.",
"create_special_project": true,
"priority": "HIGH",
"attachments": [[{id: "T3JkZXI6MTIzNA==", order_number: "SO-100045"}]],
"assembly_sku": "BLUE-TEE-M"
}