Anchor to inventoryShipmentAddItemsinventory
inventoryShipmentAddItems
mutation
Requires access scope and
access scope. Also: The user must have permission to manage inventory.
Adds items to a draft inventory shipment.
Anchor to Arguments
Arguments
- •ID!required
The ID of the draft inventory shipment to modify.
- Anchor to lineItemsline•
Items The list of line items to add to the inventory shipment.
Was this section helpful?
Anchor to InventoryShipmentAddItemsPayload returnsInventoryShipmentAddItemsPayload returns
- Anchor to addedItemsadded•
Items The list of added line items.
- Anchor to inventoryShipmentinventory•
Shipment The inventory shipment with the added items.
- Anchor to userErrorsuser•
Errors The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation inventoryShipmentAddItems($id: ID!, $lineItems: [InventoryShipmentLineItemInput!]!) {
inventoryShipmentAddItems(id: $id, lineItems: $lineItems) {
addedItems {
# InventoryShipmentLineItem fields
}
inventoryShipment {
# InventoryShipment fields
}
userErrors {
field
message
}
}
}
Input
{
"id": "gid://shopify/<objectName>/10079785100",
"lineItems": [
{
"inventoryItemId": "gid://shopify/<objectName>/10079785100",
"quantity": 1
}
]
}
{
"id": "gid://shopify/<objectName>/10079785100",
"lineItems": [
{
"inventoryItemId": "gid://shopify/<objectName>/10079785100",
"quantity": 1
}
]
}
input InventoryShipmentLineItemInput {
inventoryItemId: ID!
quantity: Int!
}