--- title: inventoryTransferMarkAsReadyToShip - GraphQL Admin description: Sets an inventory transfer to ready to ship. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventorytransfermarkasreadytoship md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventorytransfermarkasreadytoship.md --- # inventory​Transfer​Mark​As​Ready​To​Ship mutation Requires `write_inventory_transfers` access scope. Also: The user must have permission to manage inventory. Sets an inventory transfer to ready to ship. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the inventory transfer to mark as ready to ship. *** ## Inventory​Transfer​Mark​As​Ready​To​Ship​Payload returns * inventory​Transfer [Inventory​Transfer](https://shopify.dev/docs/api/admin-graphql/latest/objects/InventoryTransfer) The ready to ship inventory transfer. * user​Errors [\[Inventory​Transfer​Mark​As​Ready​To​Ship​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/InventoryTransferMarkAsReadyToShipUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### inventoryTransferMarkAsReadyToShip reference ## Mutation Reference ```graphql mutation inventoryTransferMarkAsReadyToShip($id: ID!) { inventoryTransferMarkAsReadyToShip(id: $id) { inventoryTransfer { # InventoryTransfer fields } userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100" } ``` ##### Variables ``` { "id": "gid://shopify//10079785100" } ```