get
https://example.com
POST /v2/affiliatePaymentMethods/ach-setup-intent — Create ACH SetupIntent
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Creates a Stripe SetupIntent configured for US bank account (ACH) collection via Financial Connections. Returns a clientSecret that the frontend uses to open the Stripe bank selection UI.
This is step 1 of the ACH onboarding flow. After completing this step:
- Pass the
clientSecrettostripe.collectBankAccountForSetup()on the frontend - Confirm the SetupIntent via
stripe.confirmUsBankAccountSetup(clientSecret) - Call
POST /v2/affiliatePaymentMethodswith the resultingpaymentMethodIdandpaymentMethodType: "us_bank_account"to register the account in Telegra
Response
{
"success": true,
"data": {
"clientSecret": "seti_xxx_secret_yyy"
}
}| Field | Description |
|---|---|
clientSecret | Stripe SetupIntent client secret — passed to Stripe.js on the frontend |
Required role
affiliate_super_admin, affiliate_admin, or affiliate_agent
