Anchor to inventoryTransferCreateAsReadyToShipinventory
inventoryTransferCreateAsReadyToShip
mutation
Requires access scope and
access scope. Also: The user must have permission to manage inventory.
Creates an inventory transfer in ready to ship.
Anchor to Arguments
Arguments
- Anchor to inputinput•Inventory
Transfer requiredCreate Input! The input fields for the inventory transfer.
Was this section helpful?
Anchor to InventoryTransferCreateAsReadyToShipPayload returnsInventoryTransferCreateAsReadyToShipPayload returns
- Anchor to inventoryTransferinventory•
Transfer The created inventory transfer.
- Anchor to userErrorsuser•
Errors The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation inventoryTransferCreateAsReadyToShip($input: InventoryTransferCreateInput!) {
inventoryTransferCreateAsReadyToShip(input: $input) {
inventoryTransfer {
# InventoryTransfer fields
}
userErrors {
field
message
}
}
}
Input
{
"input": {
"dateCreated": "2019-09-07T15:50:00Z",
"destinationLocationId": "gid://shopify/<objectName>/10079785100",
"lineItems": [
{
"inventoryItemId": "gid://shopify/<objectName>/10079785100",
"quantity": 1
}
],
"note": "<your-note>",
"originLocationId": "gid://shopify/<objectName>/10079785100",
"referenceName": "<your-referenceName>",
"tags": [
"<your-tags>"
]
}
}
{
"input": {
"dateCreated": "2019-09-07T15:50:00Z",
"destinationLocationId": "gid://shopify/<objectName>/10079785100",
"lineItems": [
{
"inventoryItemId": "gid://shopify/<objectName>/10079785100",
"quantity": 1
}
],
"note": "<your-note>",
"originLocationId": "gid://shopify/<objectName>/10079785100",
"referenceName": "<your-referenceName>",
"tags": [
"<your-tags>"
]
}
}
input InventoryTransferCreateInput {
dateCreated: DateTime
destinationLocationId: ID!
lineItems: [InventoryTransferLineItemInput!]!
note: String
originLocationId: ID!
referenceName: String
tags: [String!]
}
input InventoryTransferLineItemInput {
inventoryItemId: ID!
quantity: Int!
}