deliveryProfileCreate mutation

Creates a delivery profile.

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 deliveryProfileCreate($profile: DeliveryProfileInput!) { deliveryProfileCreate(profile: $profile) {
  1. <font style="color:#1F61A0;">profile</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>
} } { “profile”: {} }

Arguments

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

) REQUIRED
Specifies the input fields for a delivery profile.

DeliveryProfileInput fields

  • conditionsToDelete ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    Conditions to delete.
  • locationGroupsToCreate ([[DeliveryProfileLocationGroupInput!]](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/deliveryprofilelocationgroupinput))
    The location groups to be created in the profile.
  • locationGroupsToDelete ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    The location groups to be deleted in the profile.
  • locationGroupsToUpdate ([[DeliveryProfileLocationGroupInput!]](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/deliveryprofilelocationgroupinput))
    The location groups to be updated in the profile.
  • methodDefinitionsToDelete ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    Method definitions to delete.
  • name ([String](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01))
    The name of the profile.
  • profileLocationGroups ([[DeliveryProfileLocationGroupInput!]](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/deliveryprofilelocationgroupinput))
    The location groups associated with the profile.
  • sellingPlanGroupsToAssociate ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    The selling plan groups to be associated with this profile.
  • sellingPlanGroupsToDissociate ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    The selling plan groups to be dissociated with this profile.
  • variantsToAssociate ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    The product variant ids to be associated with this profile.
  • variantsToDissociate ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    The product variant ids to be dissociated from this profile and returned to the default profile.
  • zonesToDelete ([[ID!]](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    Zones to delete.

Return fields

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