post

POST /v2/affiliatePaymentMethods/ach-setup-intent — Create ACH SetupIntent

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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:

  1. Pass the clientSecret to stripe.collectBankAccountForSetup() on the frontend
  2. Confirm the SetupIntent via stripe.confirmUsBankAccountSetup(clientSecret)
  3. Call POST /v2/affiliatePaymentMethods with the resulting paymentMethodId and paymentMethodType: "us_bank_account" to register the account in Telegra

Response

{
  "success": true,
  "data": {
    "clientSecret": "seti_xxx_secret_yyy"
  }
}
FieldDescription
clientSecretStripe SetupIntent client secret — passed to Stripe.js on the frontend

Required role

affiliate_super_admin, affiliate_admin, or affiliate_agent

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here!