Skip to content
Last updated

Retrieve transaction details

Prerequisites

Step 1: Send the request

Send GET /v1/transactions/{id}.

curl -X GET \
  https://api.dev.paradisegateway.net/v1/transactions/TRANSACTION-01JMRSPCK7XVNP3KS8F2W4T6Y \
  -H "APIKEY: YOUR-API-KEY"

Step 2: Read the response

{
  "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"
}

Key fields

FieldDescription
transaction_stateCurrent lifecycle state (authorized, captured, settled, canceled, declined)
response_codeProcessor response code (00 = approved)
batch_idThe batch this transaction belongs to
amount / tipFinal amounts in cents
avs_result_codeAddress verification result
cvv_resultCard verification result
payment_methodMasked payment details and token
correlation_idUnique request trace ID for support and debugging

Error responses

StatusMeaning
401Invalid or missing API key
404Transaction ID not found or not accessible from your account

Next steps