subscriptionDraftUpdate mutation

Updates a Subscription Draft.

Required access

write_own_subscription_contracts 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 subscriptionDraftUpdate($draftId: ID!, $input: SubscriptionDraftInput!) { subscriptionDraftUpdate(draftId: $draftId, input: $input) {
  1. <font style="color:#1F61A0;">draft</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;">code</font>
  6. <font style="color:#1F61A0;">field</font>
  7. <font style="color:#1F61A0;">message</font>
  8. <font style="color:#555555;">}</font>
} } { “draftId”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “input”: {} }

Arguments

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

) REQUIRED
The gid of the Subscription Draft to update.
input
(
[SubscriptionDraftInput!](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptiondraftinput)

) REQUIRED
The properties of the new Subscription Contract.

SubscriptionDraftInput fields

  • billingPolicy ([SubscriptionBillingPolicyInput](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptionbillingpolicyinput))
    The billing policy for the subscription contract.
  • deliveryMethod ([SubscriptionDeliveryMethodInput](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptiondeliverymethodinput))
    The delivery method for the subscription contract.
  • deliveryPolicy ([SubscriptionDeliveryPolicyInput](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptiondeliverypolicyinput))
    The delivery policy for the subscription contract.
  • deliveryPrice ([Decimal](https://shopify.dev/docs/admin-api/graphql/reference/scalar#decimal-2021-01))
    The shipping price for each renewal the subscription contract.
  • nextBillingDate ([DateTime](https://shopify.dev/docs/admin-api/graphql/reference/scalar#datetime-2021-01))
    The next billing date for the subscription contract.
  • paymentMethodId ([ID](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01))
    The ID of the payment method to be used for the subscription contract.
  • status ([SubscriptionContractSubscriptionStatus](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptioncontractsubscriptionstatus))
    The current status of the subscription contract.

Return fields

  • draft ([SubscriptionDraft](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptiondraft))
    The Subscription Draft object.
  • userErrors ([[SubscriptionDraftUserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptiondraftusererror))
    List of errors that occurred executing the mutation.