| Field | Type | Description | Notes |
|---|---|---|---|
transaction_id | string (uuid) | - | - |
card_id | string (uuid) | - | - |
customer_id | string (uuid) | - | - |
original_transaction_id | string | For refunds/reversals, the ID of the original transaction. | nullable |
local_currency | string | Currency used at the point of sale. | nullable |
local_amount | number | Amount in local (merchant) currency. | - |
authorized_amount | number | Amount authorized in card's billing currency. | - |
authorized_currency | string | - | nullable |
authorization_code | string | - | nullable |
authorized_at | string (date-time) | - | - |
fee | number | Transaction fee charged. | - |
fee_currency | string | - | nullable |
crossborder_fee | number | Foreign transaction / cross-border fee. | - |
crossborder_fee_currency | string | - | nullable |
settle_amount | number | - | - |
settle_currency | string | - | nullable |
settle_date | string (date-time) | - | nullable |
merchant_name | string | - Example: Coffee Shop Ltd | nullable |
merchant_category_code | string | - Example: 5812 | nullable |
merchant_country | string | - | nullable |
merchant_city | string | - | nullable |
type | string | Transaction type: purchase, atm_withdrawal, refund, fee, top_up. | nullable |
sub_type | string | - | nullable |
status | string | Status: authorized, settled, declined, reversed. | nullable |
description | string | - | nullable |
curl --location -g --request GET '{{baseUrl}}/api/v1/cards/a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11/transactions?limit&offset&status&type&from&to' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;'{}