--- title: inventoryTransferMarkAsReadyToShip - GraphQL Admin description: Sets an inventory transfer to ready to ship. api_version: unstable api_name: admin source_url: html: >- https://shopify.dev/docs/api/admin-graphql/unstable/mutations/inventoryTransferMarkAsReadyToShip md: >- https://shopify.dev/docs/api/admin-graphql/unstable/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/unstable/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/unstable/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/unstable/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 ##### Variables ```json { "id": "gid://shopify//10079785100" } ```