v1

latestOpenAPI 3.1.02026-07-245361280.3 KB
Bank 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

OR

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

account_idstring

User’s dLocal account ID.

statusstring

Bank account status. <br><br> See details.

status_codenumber

Bank account status code. <br><br> It could be 200 (active) or 300 (inactive)

status_detailstring

Bank account status detail.

creation_datestring date

Bank account creation's timestamp. ISO-8601 - Notification’s timestamp (YYYY-MM-DDTHH:mm:ss.SSSSZ)

bank_account_idstring

Bank account ID assigned by dLocal.

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"
}