v1
latestOpenAPI 3.1.02026-07-245361280.3 KBBank account management
Add a bank account to an account
Adds a new bank account to an existing account.
post/v2/accounts/{account_id}/bank-account
Path parameters
account_idstring required
User’s dLocal account ID.
Request body
Example request
{
"bank": {
"country": "AR",
"currency": "ARS",
"type": "LOCAL",
"account_type": "CHECKING",
"swift": "BFRPARBA",
"beneficiary": {
"name": "Pedro",
"last_name": "Perez",
"document_type": "DNI",
"address": "Montevideo 567",
"email": "email@platforms.com"
}
}
}Response
OK
Example response
{
"account_id": "d907f733-5e17-4470-b963-f2ac2c11a440",
"status": "ACTIVE",
"status_code": 200,
"status_detail": "Bank account enabled.",
"creation_date": "2021-07-12T12:07:08-00:00",
"bank_account_id": "e4468c56-6b45-4a2e-b12b-992b6feda4cd"
}