Add Bank Account
Save a bank account so one of your users can pay with it.
The bank account is stored safely and kept encrypted. After it is saved, our responses only ever show a masked version (a masked account number and the last 4 digits of the routing number) — the full account number is never shown again.
What you need to send
user_id— the user this bank account belongs toaccount_holder_name— the name on the bank accountbank_account_number— the full bank account numberrouting_number— the bank’s 9-digit routing number
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
Add a bank account as a payment method.
Owner user UUID.
"b3a9b622-cc63-4d3c-aad6-2d8e29e6f9d4"
Name of the account holder.
120"John Doe"
Full bank account number.
4 - 34"1234567890"
ACH routing number (9 digits).
9"021000021"
Account type (e.g. checking, savings).
30"checking"
Response
Successful Response
Standard response wrapper for single-object responses and errors.
Generic over the payload type. A route that declares
CommonResponse[SomeModel] gets the real data schema rendered in
OpenAPI/Swagger; a bare CommonResponse leaves data untyped.

