--- title: inventoryTransferDelete - GraphQL Admin description: Deletes an inventory transfer. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventorytransferdelete md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventorytransferdelete.md --- # inventory​Transfer​Delete mutation Requires `write_inventory_transfers` access scope. Also: The user must have permission to manage inventory. Deletes an inventory transfer. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the inventory transfer to delete. *** ## Inventory​Transfer​Delete​Payload returns * deleted​Id [ID](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) The ID of the deleted inventory transfer. * user​Errors [\[Inventory​Transfer​Delete​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/InventoryTransferDeleteUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### inventoryTransferDelete reference ## Mutation Reference ```graphql mutation inventoryTransferDelete($id: ID!) { inventoryTransferDelete(id: $id) { deletedId userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100" } ``` ##### Variables ``` { "id": "gid://shopify//10079785100" } ```