Get Outbound Bank Accounts by Currency
Get Outbound Bank Account by Currency
GET {{Environment_URL}}/customers/v1/partner/physical/:cpf/accounts/outbound/:currency
This route retrieves all outbound bank accounts associated with the given CPF, filtered by the specified currency in the URL (:currency).
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
currency
Outbound Account currency code
true
String
pen
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"
}
]