subscriptionReinstate

Graphql fields and variables for the subscriptionReinstate mutation

Reinstating an expired or canceled subscription

Scope required: standard:write

mutation subscriptionReinstate ($ids: !, $paymentId: ID!, $taxes: Boolean!, $effectiveDate: ISO8601Date!) {
  subscriptionReinstate (ids: $ids, paymentId: $paymentId, taxes: $taxes, effectiveDate: $effectiveDate) {
      errors
      subscriptions
  }
}

Arguments

{
  "ids": [
    "456123"
  ],
  "paymentId": "456123",
  "taxes": true,
  "effectiveDate": "2022-06-01"
}
Name
Type
Description

ids

List (ID)

paymentId

ID

taxes

Boolean

effectiveDate

ISO8601Date

Response

Name
Type
Description

errors

List (JSON)

subscriptions

Last updated

Was this helpful?