Bank Accounts
Use the Bank Account API to link and manage bank accounts for each customer.
Create a Bank Account
Add a new bank account for a customer.
(Note: For pagomovil accounts, additional fields like phone number are required.)
Endpoint: POST /v1/customers/{customerId}/bank-accounts
Example Request Body:
{
"bank_code": "0138",
"country_code": "VE",
"account_type": "bankaccount",
"account_number": "123456789",
"id_doc_number": "V1234567"
}
Retrieve Bank Accounts
Retrieve a list of active bank accounts associated with a customer.
Endpoint: GET /v1/customers/{customerId}/bank-accounts
Delete a Bank Account
Soft-delete a bank account by setting its deletion timestamp.
Endpoint: DELETE /v1/customers/{customerId}/bank-accounts/{id}
Updated about 1 month ago