Skip to main content
POST
/
v1
/
platform
/
payment-methods
/
bank
Add Bank Account
curl --request POST \
  --url https://api.sandbox.finogates.com/v1/platform/payment-methods/bank \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "account_holder_name": "<string>",
  "bank_account_number": "<string>",
  "routing_number": "<string>",
  "account_type": "checking",
  "bank_name": "Chase Bank",
  "nickname": "My Checking Account"
}
'
{
  "status_code": 123,
  "data": "<unknown>",
  "query_generated_time": 123
}

Documentation Index

Fetch the complete documentation index at: https://developer.finogates.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Add a bank account as a payment method.

user_id
string<uuid>
required

Owner user UUID.

Example:

"b3a9b622-cc63-4d3c-aad6-2d8e29e6f9d4"

account_holder_name
string
required

Name of the account holder.

Maximum string length: 120
Example:

"John Doe"

bank_account_number
string
required

Full bank account number.

Required string length: 4 - 34
Example:

"1234567890"

routing_number
string
required

ACH routing number (9 digits).

Required string length: 9
Example:

"021000021"

account_type
string | null

Account type (e.g. checking, savings).

Maximum string length: 30
Example:

"checking"

bank_name
string | null

Name of the bank.

Maximum string length: 120
Example:

"Chase Bank"

nickname
string | null

Optional display nickname for the payment method.

Maximum string length: 120
Example:

"My Checking Account"

Response

Successful Response

Standard response wrapper for single-object responses and errors.

status_code
integer
required

HTTP status code for the response.

data
any
required

Payload or error details.

query_generated_time
integer
required

UTC timestamp (milliseconds since epoch) when response was generated.