Get capture by ID
GETDescription: Retrieves capture details by its unique identifierAuthentication: Required via JWT Bearer tokenProcess: 1. Validate user authentication and input parameters 2. Verify capture exists and belongs to the user 3. Return capture detailsResponse includes: - Capture ID and status - Associated transaction ID - Amount and currency - External ID from PSP - Creation and update timestamps/v1/payin/captures/:captureId
Request
Path Parameters
Capture ID
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
Capture details retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
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
{
"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-10T22:05:25.396Z",
"updated_at": "2025-12-10T22:05:25.396Z"
}
If any required params are missing or has invalid format or type.
Authentication failed. Please provide a valid Bearer token in the Authorization header.