fulfillmentTrackingInfoUpdate mutation

Deprecation warning

Use the new fulfillmentOrder APIs to manage fulfillments.

Updates tracking information for a fulfillment.

Required access

write_fulfillments access scope.

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 fulfillmentTrackingInfoUpdate($fulfillmentId: ID!, $trackingInfoUpdateInput: TrackingInfoUpdateInput!) { fulfillmentTrackingInfoUpdate(fulfillmentId: $fulfillmentId, trackingInfoUpdateInput: $trackingInfoUpdateInput) {
  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=”, “trackingInfoUpdateInput”: {} }

Arguments

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

) REQUIRED
The id of the fulfillment.
trackingInfoUpdateInput
(
[TrackingInfoUpdateInput!](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/trackinginfoupdateinput)

) REQUIRED
The input for the mutation.

TrackingInfoUpdateInput fields

  • notifyCustomer ([Boolean](https://shopify.dev/docs/admin-api/graphql/reference/scalar#boolean-2021-01))
    Indicates whether the customer will be notified of this update and future updates for this fulfillment.
  • trackingCompany ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    The name of the tracking company.
  • trackingDetails ([[TrackingInfoInput!]](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/trackinginfoinput))
    Tracking information consisting of one or more tracking URLs and numbers associated with 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.