--- title: inventoryShipmentReceive - GraphQL Admin description: Receive an inventory shipment. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventoryshipmentreceive md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/inventoryshipmentreceive.md --- # inventory​Shipment​Receive mutation Requires `write_inventory_shipments_received_items` access scope. Also: The user must have permission to manage inventory. Receive an inventory shipment. ## Arguments * bulk​Receive​Action [Inventory​Shipment​Receive​Line​Item​Reason](https://shopify.dev/docs/api/admin-graphql/latest/enums/InventoryShipmentReceiveLineItemReason) The bulk receive action for the inventory shipment. * date​Received [Date​Time](https://shopify.dev/docs/api/admin-graphql/latest/scalars/DateTime) The date the inventory shipment was initially received. * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the inventory shipment to receive. * line​Items [\[Inventory​Shipment​Receive​Item​Input!\]](https://shopify.dev/docs/api/admin-graphql/latest/input-objects/InventoryShipmentReceiveItemInput) The list of receive line items for the inventory shipment. *** ## Inventory​Shipment​Receive​Payload returns * inventory​Shipment [Inventory​Shipment](https://shopify.dev/docs/api/admin-graphql/latest/objects/InventoryShipment) The inventory shipment with received items. * user​Errors [\[Inventory​Shipment​Receive​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/InventoryShipmentReceiveUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### inventoryShipmentReceive reference ## Mutation Reference ```graphql mutation inventoryShipmentReceive($id: ID!, $lineItems: [InventoryShipmentReceiveItemInput!], $dateReceived: DateTime, $bulkReceiveAction: InventoryShipmentReceiveLineItemReason) { inventoryShipmentReceive(id: $id, lineItems: $lineItems, dateReceived: $dateReceived, bulkReceiveAction: $bulkReceiveAction) { inventoryShipment { # InventoryShipment fields } userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100", "lineItems": [ { "shipmentLineItemId": "gid://shopify//10079785100", "quantity": 1, "reason": "ACCEPTED" } ], "dateReceived": "2019-09-07T15:50:00Z", "bulkReceiveAction": "ACCEPTED" } ``` ##### Variables ``` { "id": "gid://shopify//10079785100", "lineItems": [ { "shipmentLineItemId": "gid://shopify//10079785100", "quantity": 1, "reason": "ACCEPTED" } ], "dateReceived": "2019-09-07T15:50:00Z", "bulkReceiveAction": "ACCEPTED" } ``` ##### Schema ``` input InventoryShipmentReceiveItemInput { shipmentLineItemId: ID! quantity: Int! reason: InventoryShipmentReceiveLineItemReason! } ```