v1

latestOpenAPI 3.1.02026-07-245361280.3 KB
Bank account management

Get a list of all bank accounts

This service can be used to get all ACTIVE bank accounts that have been added to the account.

get/v2/accounts/{account_id}/bank-account

Path parameters

account_idstring required
Example:d907f733-5e17-4470-b963-f2ac2c11a440

User’s dLocal account ID.

Response

OK

account_idstring

User’s dLocal account ID.

bank_account_idstring

Bank account ID assigned by dLocal.

creation_datestring date

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

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.

Example response

[
  {
    "account_id": "d907f733-5e17-4470-b963-f2ac2c11a440",
    "bank_account_id": "e4468c56-6b45-4a2e-b12b-992b6feda4cd",
    "creation_date": "2021-07-12T12:07:08-00:00",
    "status": "ACTIVE",
    "status_code": 200,
    "status_detail": "Bank account enabled.",
    "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"
      },
      "pix_keys": [
        {
          "status": "ACTIVE",
          "type": "PIX_PHONE"
        }
      ]
    }
  }
]