v356

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-031733562.1 MB
Stripe Collection Settings

Update Stripe collection settings for Sequence account

Updates Stripe collection settings for the current Sequence accounts.

put/stripe/collections/settings/{id}

Path parameters

idstring required

Stripe Collection Settings ID

Headers

Sequence-Version'2024-07-30'

Use this header to select an API version

Request body

enableAutomaticPaymentsboolean nullable

Whether to automatically collect payments by default if payment details are available

autoEnableStripePaymentsboolean nullable

Whether to automatically enable Stripe payments for new billing schedules

retryAnchor'SENT_DATE' | 'DUE_DATE'
retryOffsetDaysinteger[] nullable

Days after the anchor date on which to re-attempt collection, e.g. [0, 7, 14]

Example request

{
  "enableAutomaticPayments": false,
  "autoEnableStripePayments": true,
  "retryAnchor": "DUE_DATE",
  "retryOffsetDays": [
    0,
    7,
    14
  ]
}

Response

OK

idstring required
sequenceAccountIdstring required
enableAutomaticPaymentsboolean required

Whether to automatically collect payments by default if payment details are available

autoEnableStripePaymentsboolean required

Whether to automatically enable Stripe payments for new billing schedules

Example response

{
  "id": "018f6b0c-7e89-7b4a-8e47-1b2e2d5a4f6c",
  "sequenceAccountId": "683fe518-60c8-429f-9320-8aa7efc20bcc",
  "enableAutomaticPayments": true,
  "autoEnableStripePayments": false,
  "retryOffsetDays": []
}