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! | |
requested_date | DateTime! | |
name | String | |
packing_details | String | |
assembly_details | String | |
type | WorkOrderType! | |
instructions | String | |
create_special_project | Boolean | |
priority | WorkOrderPriority | |
attachments | [WorkOrderAttachmentType] | |
assembly_sku | AssemblySKUType |
Referenced By
- work_order_create Mutation
Example
{
"customer_account_id": "abc123",
"warehouse_id": "abc123",
"requested_date": "abc123",
"name": "abc123",
"packing_details": "abc123",
"assembly_details": "abc123",
"type": "ASSEMBLY",
"instructions": "abc123",
"create_special_project": true,
"priority": "HIGH",
"attachments": WorkOrderAttachmentType,
"assembly_sku": AssemblySKUType
}