Update a subscription contract
Subscription contracts often require updates, such as when a customer needs to update their payment method or requests a change to their subscription.
This guide shows you how to manage and update your existing subscription contracts by creating and applying a discount code to a contract.
Anchor to RequirementsRequirements
- Most subscriptions, pre-order and try before you buy apps need to request API access through the Partner Dashboard. We give API access to apps that are designed according to our [principles for subscriptions, pre-order and TBYB apps] (/docs/apps/selling-strategies/purchase-options#shopifys-principles).
- Public apps that use subscriptions, pre-order or TBYB need to meet specific requirements to be published on the Shopify App Store.
- Custom apps created in the Shopify admin can't use subscriptions, pre-order or TBYB because these apps can't use extensions or request access to protected scopes. If you're building a solution for a single store, then build your custom app in the Partner Dashboard.
- Your app can make authenticated requests to the GraphQL Admin API.
- Your app has the
read_own_subscription_contracts
andwrite_own_subscription_contracts
access scopes. Learn how to configure your access scopes using Shopify CLI. - You've created products and product variants in your development store.
- You've created a subscription contract.
Anchor to Step 1: Query the available contracts on the storeStep 1: Query the available contracts on the store
To view the available contracts on a store, you can query subscriptionContracts
. In the following example, the response body returns the first ten available contracts, including the status of the contract and information about the customer, billing policy, and delivery policy.
For a list of possible statuses, refer to SubscriptionContractSubscriptionStatus.
Importing past events on a subscription contract isn't supported.
POST https://{shop}.myshopify.com/api/{api_version}/graphql.json
GraphQL query
JSON response
Anchor to Step 2: Create a draft of an existing contractStep 2: Create a draft of an existing contract
This guide shows you how to update a subscription contract incrementally. However, if you only want to swap out a specific product variant on a subscription contract, then you can use the subscriptionContractProductUpdate
mutation.
When a customer updates their payment method or makes a change to their subscription, you need to update the appropriate subscription contract.
To update a subscription contract, use the subscriptionContractUpdate
mutation and supply the subscription contract ID. The call returns a draft with the existing state of the contract.
POST https://{shop}.myshopify.com/api/{api_version}/graphql.json
GraphQL query
JSON response
Anchor to Step 3: Update the subscription draftStep 3: Update the subscription draft
This step shows you how to create and apply a discount code to a subscription draft. However, you can make other updates to the subscription draft in this step as needed, such as adding a line item or updating the delivery policy.
After retrieving the draft ID, you can begin making edits to the contract draft. Edits to the contract draft can be made incrementally. Changes to the contract draft aren't made live until the draft is committed.
Anchor to Create a subscription discount codeCreate a subscription discount code
Use the discountCodeBasicCreate
mutation to create a basic discount code. To specify that the discount can be applied on subscriptions, set the appliesOnSubscription
field to true
:
POST https://{shop}.myshopify.com/api/{api_version}/graphql.json
GraphQL mutation
JSON response
Anchor to Apply the discount codeApply the discount code
Use the subscriptionDraftDiscountCodeApply
mutation to apply the discount code to the subscription draft:
POST https://{shop}.myshopify.com/api/{api_version}/graphql.json
GraphQL mutation
JSON response
Anchor to Step 4: Commit the subscription draftStep 4: Commit the subscription draft
When you commit the subscription draft, the changes that you've made become active on the subscription contract for which the draft was created. You can call the subscriptionDraft
query to review the information on the subscription draft before committing it.
After you're satisfied with your updates, you can call the subscriptionDraftCommit
mutation to commit your changes to the contract:
POST https://{shop}.myshopify.com/api/{api_version}/graphql.json
GraphQL mutation
JSON response
Anchor to Next stepsNext steps
- Learn how to manage and edit billing cycles, including updating the schedule and contract information for a billing cycle, skipping a billing cycle or changing the contract information for one period.