Create Picking Order Item
createPickingOrderItem Mutation
Creates a new picking order item and associates it with an existing picking order. This allows adding individual items to a picking order after it has been created.
Arguments
input
CreatePickingOrderItemInput!
Input data for creating the picking order item
Return Type
PickingOrderItemOutput - Contains the created picking order item and any associated workflows.
Input Fields
CreatePickingOrderItemInput:
dataTypeID
UUID
Optional data type ID for custom validation
dataTypeSlug
String
Optional data type slug for custom validation
data
Map
Custom data associated with the order item
sku
String!
Required stock keeping unit (SKU) of the item
quantity
Int!
Required quantity of the item to pick
orderID
ID!
Required ID of the picking order to associate this item with
Usage Example
JavaScript Example
Notes
The specified
orderIDmust exist and be accessible to the current userThe
skushould correspond to an existing inventory itemThe
quantitymust be a positive integerCustom
datacan include any JSON-serializable information relevant to the itemAssociated workflows may be automatically triggered based on system configuration
The operation may fail if the picking order is already in a non-editable state
Last updated
Was this helpful?
