Skip to main content

Subscription-RetrySchedule

Defines a custom schedule for retrying failed subscription payments. Each entry in the array specifies how long to wait before attempting the next payment retry. If not specified, the system's default retry schedule will be used.

  • Array [
  • intervalstringrequired

    The unit of time to wait before the retry attempt.

    Enum ValueDescription
    dayDaily
    weekWeekly
    monthMonthly
    yearYearly

    Possible values: [day, week, month, year]

    Example: day
    intervalCountint32required

    The number of intervals to wait before the retry attempt.

    Possible values: >= 1 and <= 31

    Example: 3
  • ]
  • Subscription-RetrySchedule
    [
    {
    "interval": "day",
    "intervalCount": 1
    },
    {
    "interval": "day",
    "intervalCount": 3
    },
    {
    "interval": "week",
    "intervalCount": 1
    }
    ]