v1

latestOpenAPI 3.0.02026-07-1412039.8 KB
Cards

Get Partner Card Details

Retrieve detailed information about a specific partner card using its identifier. This endpoint provides complete card information including current status, spending details, and metadata.

get/partner_cards/{identifier}

Path parameters

identifierstring required

Unique identifier of the partner card

Headers

Content-Typestring
Authorizationstring

Response

Successful response

cardHolderNamestring

Name of the card holder

expiryDatestring

Card expiry date in MM/YY format

cardLast4string

Last 4 digits of the card number

status'active' | 'inactive' | 'expired' | 'terminated'

Current status of the card

bookingIdstring

Booking reference associated with the card

createdAtstring date-time

Card creation timestamp

updatedAtstring date-time

Card last update timestamp

idstring

Unique card identifier

amountnumber

Card amount limit

totalSpendnumber

Total amount spent on the card

Example response

{
  "cardHolderName": "MCS integration",
  "expiryDate": "12/28",
  "cardLast4": "5737",
  "status": "active",
  "bookingId": "Testing1235821444579867",
  "createdAt": "2025-12-15T08:22:11.930+04:00",
  "updatedAt": "2025-12-15T08:22:15.071+04:00",
  "id": "CRD-5959837C07",
  "amount": 500,
  "totalSpend": 200
}