subscriptionBillingAttemptCreate mutation

Creates a new subscription billing attempt.

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 subscriptionBillingAttemptCreate($subscriptionContractId: ID!, $subscriptionBillingAttemptInput: SubscriptionBillingAttemptInput!) { subscriptionBillingAttemptCreate(subscriptionContractId: $subscriptionContractId, subscriptionBillingAttemptInput: $subscriptionBillingAttemptInput) {
  1. <font style="color:#1F61A0;">subscriptionBillingAttempt</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>
} } { “subscriptionContractId”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “subscriptionBillingAttemptInput”: {
  1. <font style="color:#8B2BB9;">"idempotencyKey"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"placeholder"</font>
} }

Arguments

Argument Description
subscriptionBillingAttemptInput
(
[SubscriptionBillingAttemptInput!](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptionbillingattemptinput)

) REQUIRED
The information to apply as a billing attempt.
subscriptionContractId
(
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

) REQUIRED
The ID of the subscription contract.

SubscriptionBillingAttemptInput fields

  • idempotencyKey ([String!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01)) REQUIRED
    A unique key generated by the client to avoid duplicate payments.

Return fields

  • subscriptionBillingAttempt ([SubscriptionBillingAttempt](https://shopify.dev/docs/admin-api/graphql/reference/orders/subscriptionbillingattempt))
    The subscription billing attempt.
  • userErrors ([[BillingAttemptUserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/orders/billingattemptusererror))
    List of errors that occurred executing the mutation.