fulfillmentCreateV2 mutation

Creates a fulfillment for one or many fulfillment orders. The fulfillment orders are associated with the same order and are assigned to the same location.

On this page

Interactive example

This is an example mutation query. Use the embedded interactive tool below to edit the query.

Hint: use Ctrl + Space for autocompleting fields.

mutation fulfillmentCreateV2($fulfillment: FulfillmentV2Input!) { fulfillmentCreateV2(fulfillment: $fulfillment) {
  1. <font style="color:#1F61A0;">fulfillment</font> <font style="color:#555555;">{</font>
  2. <font style="color:#1F61A0;">id</font>
  3. <font style="color:#555555;">}</font>
  4. <font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
  5. <font style="color:#1F61A0;">field</font>
  6. <font style="color:#1F61A0;">message</font>
  7. <font style="color:#555555;">}</font>
} } { “fulfillment”: {
  1. <font style="color:#8B2BB9;">"lineItemsByFulfillmentOrder"</font><font style="color:#555555;">:</font> <font style="color:#555555;">[</font>
  2. <font style="color:#555555;">{</font>
  3. <font style="color:#8B2BB9;">"fulfillmentOrderId"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE="</font>
  4. <font style="color:#555555;">}</font>
  5. <font style="color:#555555;">]</font>
} }

Arguments

Argument Description
fulfillment
(
[FulfillmentV2Input!](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmentv2input)

) REQUIRED
The input fields used to create a fulfillment from fulfillment orders.
message
(
[String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01)

)
An optional message for the fulfillment request.

FulfillmentV2Input fields

  • lineItemsByFulfillmentOrder ([[FulfillmentOrderLineItemsInput!]!](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmentorderlineitemsinput)) REQUIRED
    Pairs of fulfillment_order_id and fulfillment_order_line_items that represent the fulfillment order line items that have to be fulfilled for each fulfillment order. For any given pair, if the fulfillment order line items are left blank then all the fulfillment order line items of the associated fulfillment order ID will be fulfilled.
  • notifyCustomer ([Boolean](https://shopify.dev/docs/admin-api/graphql/reference/scalar#boolean-2021-01))
    Whether the customer is notified. If set to true, a notification is sent when the fulfillment is created.
  • trackingInfo ([FulfillmentTrackingInput](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmenttrackinginput))
    The fulfillment’s tracking information, including a tracking URL, a tracking number, and the company associated with the fulfillment.

Return fields

  • fulfillment ([Fulfillment](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillment))
    The created fulfillment.
  • userErrors ([[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror))
    List of errors that occurred executing the mutation.