v1

latestOpenAPI 3.0.02026-07-1412039.8 KB
Cards

Get Partner Card Transaction Details

Retrieve detailed information about a specific transaction for a partner card. This endpoint provides complete transaction details including merchant information, amounts, and status.

get/partner_cards/{identifier}/transactions/{transaction_identifier}

Path parameters

identifierstring required

Unique identifier of the partner card

transaction_identifierstring required

Unique identifier of the transaction

Headers

Content-Typestring
Authorizationstring

Response

Successful response

kind'purchase' | 'refund' | 'authorization'

Type of transaction

merchant_name_formattedstring

Formatted merchant name for display

amount_currencystring

Currency code for the transaction amount

billing_amount_currencystring

Currency code for the billing amount

status'success' | 'failed' | 'pending'

Transaction status

card_last4string

Last 4 digits of the card used

idstring

Unique transaction identifier

merchant_namestring

Raw merchant name

amountnumber

Transaction amount

billing_amountnumber

Billing amount

card_namestring

Name of the card

card_holder_namestring

Name of the card holder

created_atstring

Transaction creation date and time

updated_atstring

Transaction last update date and time

expenseobject

Associated expense information

Example response

{
  "kind": "purchase",
  "merchant_name_formatted": "Virtual card issued",
  "amount_currency": "AED",
  "billing_amount_currency": "AED",
  "status": "success",
  "card_last4": "5737",
  "id": "CTX-1A95FEDE53",
  "merchant_name": null,
  "amount": 200,
  "billing_amount": 200,
  "card_name": "VCC card",
  "card_holder_name": "MCS integration",
  "created_at": "15 Dec 2025, 08:26AM",
  "updated_at": "15 Dec 2025, 08:26AM",
  "expense": {}
}