v1
latestOpenAPI 3.0.02026-07-1412039.8 KBCards
Get Partner Card Transactions
Retrieve a paginated list of all transactions for a specific partner card. This endpoint provides detailed transaction history including purchase information, amounts, and status.
get/partner_cards/{identifier}/transactions
Path parameters
identifierstring required
Unique identifier of the partner card
Query parameters
pageinteger
Page number for pagination
per_pageinteger
Number of items per page
Headers
Content-Typestring
Authorizationstring
Response
Successful response
Example response
{
"data": [
{
"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": {}
}
],
"pagination_meta": {
"page": 1,
"per_page": 10,
"total_pages": 1,
"next_page": null,
"prev_page": null,
"from": 1,
"to": 1,
"total_count": 1
}
}