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) {} } { “fulfillment”: {
<font style="color:#1F61A0;">fulfillment</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">id</font>
<font style="color:#555555;">}</font>
<font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">field</font>
<font style="color:#1F61A0;">message</font>
<font style="color:#555555;">}</font>
} }
<font style="color:#8B2BB9;">"lineItemsByFulfillmentOrder"</font><font style="color:#555555;">:</font> <font style="color:#555555;">[</font>
<font style="color:#555555;">{</font>
<font style="color:#8B2BB9;">"fulfillmentOrderId"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE="</font>
<font style="color:#555555;">}</font>
<font style="color:#555555;">]</font>
Arguments
FulfillmentV2Input fields
- lineItemsByFulfillmentOrder (
[[FulfillmentOrderLineItemsInput!]!](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmentorderlineitemsinput)
) REQUIRED
Pairs offulfillment_order_id
andfulfillment_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.