Get all payout
GETTag: api-payments-gateway-get-payout-allDescription: Retrieve all payouts for the authenticated user by payout type, with an optional country filter and pagination./v1/payout
Request
Query Parameters
Page number, starting from 1. Default is 1.
Field to sort the results by.
Possible values: [BRA, ARG, CHL, PER, MEX]
Possible values: [BANK_TRANSFER, YAPE]
Payment method type
Header Parameters
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.
Possible values: [pt-BR, en-US]
Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.
The product ID is a UUID (v4) used to identify the Z.ro product configuration.
The product target user ID is a UUID (v4) used to identify what user account this request must be executed. Require: x-product-uuid.
Responses
- 200
- 400
- 401
- 422
Payouts retrieved successfully.
- application/json
- Schema
- Example (from schema)
- bank_transfer
- yape
Schema
- V1GetAllBankTransferPaymentsResponse
- V1GetAllYapeWalletPaymentsResponse
- Array [
- ]
- Array [
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
List of bank transfer payments.
Payout ID.
Operation ID associated with the transaction.
Country of the transaction.
Status of the transaction.
Amount of the transaction.
Currency tag of the transaction.
Third party's first name.
Third party's last name.
Third party's email address.
Third party's phone number.
Third party's document number.
Third part document type.
Third party's address zip code.
Third party's address street.
Third party's address number.
Third party's address city.
Third party's address state.
Third party's address country.
Third party's address complement.
Third party's bank code.
Third party's bank name.
Possible values: [SA, CA, CP]
Third party's account type.
Third party's account number.
Date when the transaction was authorized.
Date when the transaction failed.
Creation date of the transaction record.
Last update date of the transaction record.
Page number.
Page size.
Page total.
Total of elements.
data object[]required
List of Yape wallet payments.
Payout ID.
Operation ID associated with the transaction.
Possible values: [BRA, ARG, CHL, PER, MEX]
Country of the transaction.
Possible values: [PENDING, WAITING, AUTHORIZED, REJECTED, REVERSED, PROCESSED, FAILED, ERROR]
Status of the transaction.
Amount of the transaction in cents.
Possible values: [MXN, PEN, CLP, ARS, USD, BRL]
Currency of the transaction.
Third part name.
Third part last name.
Third part email.
Third part phone (Yape cellphone number).
Third part document (DNI).
Possible values: [DNI, CE, PAS, PP, RUT, RUC, CUIL, CUIT, CPF, CNPJ, RFC, CURP, PASSPORT, TAXSTATEMENT, IDCARD]
Third part document type.
Third part address zip code.
Third part address street.
Third part address number.
Third part address city.
Third part address state.
Third part address country.
Third part address complement.
Possible values: [SA, CA, CP]
Third part account type (Yape uses cellphone).
Third part account number (Yape cellphone number).
Third part bank code.
Third part bank name.
Authorized date.
Succeeded date.
Failed date.
Created at.
Updated at.
{}
Bank transfer payouts details
{
"page": 1,
"page_size": 20,
"page_total": 2,
"total": 25,
"data": [
{
"id": "0197b169-da6b-7ba2-b053-ce413ae39afd",
"operation_id": "456e7890-e12b-34d5-a678-426614174001",
"country": "CHL",
"status": "PENDING",
"amount": 1000,
"currency_tag": "PEN",
"third_part_name": "John",
"third_part_last_name": "Doe",
"third_part_email": "john.doe@example.com",
"third_part_phone": "+1234567890",
"third_part_document": "A12345678",
"third_part_document_type": "DNI",
"third_part_address_zip_code": "12345",
"third_part_address_street": "Main St",
"third_part_address_number": "100",
"third_part_address_city": "Metropolis",
"third_part_address_state": "StateName",
"third_part_address_country": "CountryName",
"third_part_bank_code": "123",
"third_part_account_type": "CA",
"third_part_account_number": "1234567890",
"authorized_date": "2023-10-01T12:00:00.000Z",
"failed_date": "2023-10-03T12:00:00.000Z",
"created_at": "2023-09-30T12:00:00.000Z",
"updated_at": "2023-10-01T15:00:00.000Z"
}
]
}
Yape wallet payouts details
{
"page": 1,
"page_size": 20,
"page_total": 3,
"total": 50,
"data": [
{
"id": "0197b169-da6b-7ba2-b053-ce413ae39afd",
"operation_id": "456e7890-e12b-34d5-a678-426614174001",
"country": "PER",
"status": "PENDING",
"amount": 10000,
"currency_tag": "PEN",
"third_part_name": "Juan",
"third_part_last_name": "Pérez",
"third_part_email": "juan.perez@example.com",
"third_part_phone": "987654321",
"third_part_document": "12345678",
"third_part_document_type": "DNI",
"third_part_address_zip_code": "15001",
"third_part_address_street": "Av. Javier Prado",
"third_part_address_number": "1234",
"third_part_address_city": "Lima",
"third_part_address_state": "Lima",
"third_part_address_country": "Peru",
"third_part_address_complement": "Apto 101",
"third_part_account_type": "CP",
"third_part_account_number": "987654321",
"authorized_date": "2025-11-14T17:34:31.363Z",
"succeeded_date": "2025-11-14T17:34:31.363Z",
"failed_date": "2025-11-14T17:34:31.363Z",
"created_at": "2025-11-14T17:34:31.363Z",
"updated_at": "2025-11-14T17:34:31.363Z"
}
]
}
If any required params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.