List Outbound Bank Accounts

List Outbound Bank Accounts

GET {{Environment_URL}}/customers/v1/partner/legal/:cnpj/accounts/outbound

This route list all outbound bank accounts record for a client.

Headers

Name
Value
Description

Authorization

Bearer <token>

Bearer Token obtained via sign-in

client-key

123ABCD456

Client authentication key, obtained via webhook.

Path Params

Key
Description
Required
Data Type
Example

cnpj

cnpj in format 10111101000101

true

String

10111101000101

Response

[
    {
        "id": "68bf30b707879576c388cc5d",
        "name": "Lucía Ramos",
        "type": "OUTBOUND",
        "beneficiaryDocument": {
            "beneficiaryDocType": "DNI",
            "value": "12345678"
        },
        "bankName": "Banco de Crédito del Perú",
        "bankBranch": "Lima Central",
        "bankCountry": "PER",
        "number": "00112345678901234567",
        "code": {
            "option": "SWIFT_BIC",
            "value": "BCPLPEPL"
        },
        "currency": "PEN",
        "createdAt": "2025-09-08T19:38:31.632Z",
        "paymentMethod": "BANK_ACCOUNT"
    }
]