[ Web Proxy ]
URL:
Viewing: https://developer.squareup.com/reference/sdks/web/payments/objects/AchRecurringChargeOptions [Back]  [Original]

AchRecurringChargeOptions Object - Square Web Payments SDK Reference

#
AchRecurringChargeOptions

Create recurring charge for bank on file.

Properties

#
amount string
#
bankAccountId string
#
currency string
#
frequency AchYearlyRecurringFrequency | AchMonthlyRecurringFrequency | AchWeeklyRecurringFrequency | AchDailyRecurringFrequency
#
intent "RECURRING_CHARGE"
#
offCadencePayments OffCadencePayment[]
#
startDate string
achRecurringChargeOptions.js
JS
JavaScript
Copy

const achRecurringChargeOptions = {

   intent: 'RECURRING_CHARGE',

   bankAccountId: 'bact:123456789',

   startDate: '2025-12-31',

   frequency: {

     days: 1,

   },

   offCadencePayments: [{

     amount: '2.00',

     currency: 'USD',

     date: '2025-12-24',

   }],

   amount: '5.00',

   currency: 'USD',

};

Web Proxy Viewer  |  New URL  |  Original Page