v1

latestOpenAPI 3.1.02026-08-0671638.9 KB

Consult Operation

Retrieves the current status and details of a cash operation using its reference number. Use this endpoint to check the status of cash-in or cash-out operations.

get/api/v1/cash/consult

Query parameters

referencestring required
Example:10511175512161627448

20-digit operation reference number

Headers

X-Client-Idstring required

Client API key (32-character hex)

X-Signaturestring required

HMAC-SHA256 signature generated using api_secret

X-Timestampstring required

Unix timestamp (seconds since epoch)

Response

Operation found successfully

response_codestring

Response code ("0" for success)

response_textstring

Response message

Example response

{
  "response_code": "0",
  "response_text": "Operacion encontrada",
  "result": {
    "operation_id": 123,
    "kind": "cash_in",
    "reference": "10511175512161627448",
    "status": "paid",
    "amount": 500,
    "created_at": "2025-01-15T10:30:00Z",
    "expire_at": "2025-01-18T10:30:00Z"
  }
}