- A valid API key — see Obtain API credentials
- A transaction ID (returned in every transaction response as
id)
Send GET /v1/transactions/{id}.
curl -X GET \
https://api.dev.paradisegateway.net/v1/transactions/TRANSACTION-01JMRSPCK7XVNP3KS8F2W4T6Y \
-H "APIKEY: YOUR-API-KEY"{
"id": "TRANSACTION-01JMRSPCK7XVNP3KS8F2W4T6Y",
"object": "transaction",
"type": "card_sale",
"terminal_transaction_id": "TERMINAL_TRANSACTION-01JMRSPCK7XVNP3KS8F2W4T6Y",
"processor_transaction_id": "POT_7B10Z2D12C533EDB85839C7603721EB1C3E23",
"mid": "MID_3305FD4D5F4157G59D95G2GG0829G861",
"transaction_state": "authorized",
"response_status": "Approved",
"response_code": "00",
"response_message": "The API request is approved.",
"batch_id": "BATCH-01JMRSPCK7XVNP3KS8F2W4T6Y",
"transaction_date": "2026-01-15T14:30:00Z",
"authorization_code": "847293",
"amount_requested": 15000,
"amount_authorized": 15000,
"amount": 15000,
"tip": 1000,
"avs_result_code": "y",
"cvv_result": "M",
"payment_method": {
"type": "card",
"payment_token": "PAYMENT_TOKEN-01JMRSPCK8WLXDPRMW3SNPVQEA",
"brand": "visa",
"last_four": "1234",
"bin": "411111",
"funding": "credit"
},
"correlation_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}| Field | Description |
|---|---|
transaction_state | Current lifecycle state (authorized, captured, settled, canceled, declined) |
response_code | Processor response code (00 = approved) |
batch_id | The batch this transaction belongs to |
amount / tip | Final amounts in cents |
avs_result_code | Address verification result |
cvv_result | Card verification result |
payment_method | Masked payment details and token |
correlation_id | Unique request trace ID for support and debugging |
| Status | Meaning |
|---|---|
401 | Invalid or missing API key |
404 | Transaction ID not found or not accessible from your account |
- List transactions with filters — search across multiple transactions
- Cancel an authorized transaction
- Refund a settled transaction