Skip to main content

Overview

View detailed information about a card, including card type, masked card number, cardholder, and transaction limits.

Use the card_id returned when adding the card to retrieve its detailed information.

cURL -X GET /cards/{card_id}/detail
-H 'Content-Type: application/json'
-H 'Authorization: {token}'

Card Reference Number

Returns the card_no, which represents the Virtual Card Number in the current account system.

"data": {
"card_no": 2716020776676196990,
}

Retrieve Card Expiration Date

Retrieve the card_number and card_validity_time.

"data": {
"card_id": 1954802358738284544,
"card_number": "527375 **** 4392",
"card_validity_time": "2027-08-01T00:00:00+08:00"
}

Account Card Type

Retrieve the current account card type (program_value).

"data": {
"program_value": 15,
"program_cn_name": "OTA",
"program_en_name": "USD Multi Card_OTA",
"card_holder_id": 1950830536975781888
}

Card Status

Retrieve the current card status.

"data": {
"card_status": "Activate",
}

Card Transaction Limits

Retrieve all transaction limits currently set on the card risk_list.

"data": {
"risk_list": [
{
"trade_risk_name": "purchase_1d",
"trade_risk_value": "100"
},
{
"trade_risk_name": "blocked_countries",
"trade_risk_value": "US"
}
],
}