List Outbound Bank Accounts

List Outbound Bank Account

GET {{Environment_URL}}/customers/v1/partner/physical/:cpf/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

Path Params

Key
Description
Required
Data Type
Example

cpf

CPF in format 00000000000

true

String

12345678900

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"
    },
    {
        "id": "",
        "...": "..."
]