fulfillmentTrackingInfoUpdateV2 mutation

Updates tracking information for a fulfillment.

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 fulfillmentTrackingInfoUpdateV2($fulfillmentId: ID!, $trackingInfoInput: FulfillmentTrackingInput!) { fulfillmentTrackingInfoUpdateV2(fulfillmentId: $fulfillmentId, trackingInfoInput: $trackingInfoInput) {
  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>
} } { “fulfillmentId”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “trackingInfoInput”: {} }

Arguments

Argument Description
fulfillmentId
(
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

) REQUIRED
The ID of the fulfillment.
notifyCustomer
(
[Boolean](https://shopify.dev/docs/admin-api/graphql/reference/scalar#boolean-2021-01)

)
Whether the customer will be notified of this update and future updates for this fulfillment.
trackingInfoInput
(
[FulfillmentTrackingInput!](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmenttrackinginput)

) REQUIRED
The tracking input for the mutation, including tracking URL, number, and company.

FulfillmentTrackingInput fields

  • company ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    The name of the tracking company.
  • number ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    The tracking number of the fulfillment.
  • url ([URL](https://shopify.dev/docs/admin-api/graphql/reference/scalar#url-2021-01))
    The URL to track the fulfillment.

Return fields

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