Update recurring subscription

Update the details of a specific subscription using its unique subscription ID.

Access scopes

Requires the following access scope: update_subscriptions

Request

A JSON object with the following fields:

FieldTypeDescription
chargeSettingsArray<ChargeSettings>Charge settings information.
nextChargestringSubscription's next charge date and time. E.g. 2021-07-16 12:53:40 +0000.
statusstringSubscription status. Supported values: ACTIVE, CANCELLED, LAST_CHARGE_FAILED or REQUIRES_PAYMENT_CONFIRMATION.

ChargeSettings

FieldTypeDescription
recurringIntervalstringCharge recurring interval. Supported values: DAY, WEEK, MONTH, YEAR.
recurringIntervalCountnumberCharge recurring interval. Supported values: for DAY - 1 (daily), for WEEK - 1 (weekly), 2 (biweekly), for MONTH - 1 (monthly), 3 (quarterly), for YEAR - 1 (annually).
{
  "status": "ACTIVE",
  "chargeSettings": {
      "recurringInterval": "DAY",
      "recurringIntervalCount": 1
  },
  "nextCharge": "2021-05-27 13:37:46 +0000"
}
{
  "status": "CANCELLED",
  "chargeSettings": {
      "recurringInterval": "DAY",
      "recurringIntervalCount": 1
  }
}
Language
Click Try It! to start a request and see the response here!