--- title: inventoryTransferEdit - GraphQL Admin description: Edits 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/inventorytransferedit md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventorytransferedit.md --- # inventory​Transfer​Edit mutation Requires `write_inventory_transfers` access scope. Also: The user must have permission to manage inventory. Edits an inventory transfer. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the inventory Transfer to be edited. * input [Inventory​Transfer​Edit​Input!](https://shopify.dev/docs/api/admin-graphql/latest/input-objects/InventoryTransferEditInput) required The input fields to edit the inventory transfer. *** ## Inventory​Transfer​Edit​Payload returns * inventory​Transfer [Inventory​Transfer](https://shopify.dev/docs/api/admin-graphql/latest/objects/InventoryTransfer) The edited inventory transfer. * user​Errors [\[Inventory​Transfer​Edit​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/InventoryTransferEditUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### inventoryTransferEdit reference ## Mutation Reference ```graphql mutation inventoryTransferEdit($id: ID!, $input: InventoryTransferEditInput!) { inventoryTransferEdit(id: $id, input: $input) { inventoryTransfer { # InventoryTransfer fields } userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100", "input": { "originId": "gid://shopify//10079785100", "destinationId": "gid://shopify//10079785100", "dateCreated": "2019-07-16", "note": "", "tags": [ "" ], "referenceName": "" } } ``` ##### Variables ``` { "id": "gid://shopify//10079785100", "input": { "originId": "gid://shopify//10079785100", "destinationId": "gid://shopify//10079785100", "dateCreated": "2019-07-16", "note": "", "tags": [ "" ], "referenceName": "" } } ``` ##### Schema ``` input InventoryTransferEditInput { originId: ID destinationId: ID dateCreated: Date note: String tags: [String!] referenceName: String } ```