--- title: inventoryTransferDelete - GraphQL Admin description: Deletes an inventory transfer. api_version: unstable api_name: admin source_url: html: >- https://shopify.dev/docs/api/admin-graphql/unstable/mutations/inventoryTransferDelete md: >- https://shopify.dev/docs/api/admin-graphql/unstable/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/unstable/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/unstable/scalars/ID) The ID of the deleted inventory transfer. * user​Errors [\[Inventory​Transfer​Delete​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/unstable/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 ##### Variables ```json { "id": "gid://shopify//10079785100" } ```