Skip to main content
POST
Customers can use this endpoint to register a bank account that can be used for loan disbursements, repayments, and fund transfers.

Request Headers

string
required
The JWT Access Token obtained from the /login or /refresh-token endpoint.
string
required
Unique idempotency key for the request to prevent duplicate processing.
string
required
The date and time at which the request was initiated (ISO 8601 format).
string
required
The IP address of the customer making the request.
string
required
Unique identifier for the interaction/session.
string
default:"application/json"
required
Must be application/json.

Request Body

string
required
The unique identifier (UUID) of the customer adding the bank account.
string
required
Bank account number.
string
required
Name of the account holder as it appears on the bank account.
string
required
Code identifying the bank.
string
required
Name of the bank.
string
Type of account (e.g., SAVINGS, CURRENT, CHECKING).
boolean
Whether this should be set as the default bank account.

Response

Returns confirmation of bank account creation with account details.
string
default:"SUCCESS"
Overall status of the API request.
object
Bank account details.

Code Examples