Get all captures
GETDescription: Retrieves all captures of the userAuthentication: Required via JWT Bearer tokenProcess: 1. Validate user authentication and input parameters 2. Verify captures exists and belongs to the user 3. Return paginated list of capturesPagination: - Use 'page' parameter to navigate through results - Use 'size' parameter to control page size - Use 'sort' and 'order' parameters to sort resultsResponse includes: - Pagination metadata - List of captures with their details - Each capture includes ID, status, amount, currency, and timestamps/v1/payin/captures
Request
Path Parameters
Capture ID
Query Parameters
Default value: 1
Page number, starting from 1. Default is 1.
Possible values: <= 100
Default value: 20
Page size. Default is 10.
Sort field.
Possible values: [ASC, DESC]
Sort order.
Possible values: [BRA, ARG, CHL, PER, MEX]
Country code filter.
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
Captures retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
List of captures
Capture ID
Transaction ID to which the capture belongs
Capture amount in cents
Possible values: [MXN, PEN, CLP, ARS, USD, BRL]
Currency tag
Possible values: [BRA, ARG, CHL, PER, MEX]
Country code
Possible values: [PENDING, WAITING, AUTHORIZED, FAILED, ERROR]
Capture status
Creation date
Last update date
{
"page": 1,
"page_size": 20,
"page_total": 20,
"total": 100,
"data": [
{
"id": "0197b169-da6b-7ba2-b053-ce413ae39afd",
"transaction_id": "0197b169-da6b-7ba2-b053-ce413ae39afd",
"amount": 10000,
"currency_tag": "MXN",
"country": "MEX",
"status": "AUTHORIZED",
"created_at": "2025-12-11T19:50:56.404Z",
"updated_at": "2025-12-11T19:50:56.404Z"
}
]
}
If any required params are missing or has invalid format or type.
Authentication failed. Please provide a valid Bearer token in the Authorization header.