Query Card Information
Fetch full card details using the card token provided during application.
Request URI
POST
/issuing/card/query-card-info
Request Body
Refer to : common
Biz_data :
Name
Type
Description
card_token*
string
Card token
Request Example
{
"app_id": "00000000000000000",
"partner_id": "00000000000000000",
"sub_partner_id": "",
"request_id": "c4EAD82b-Eb17-fEaf-998b-D3F5DDDd",
"timestamp": "2025-04-07 13:56:36",
"format": "JSON",
"version": "2.0",
"sign_type": "RSA",
"biz_data": {
"card_token": "450620141926"
},
"random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!
Response
Name
Type
Description
holder_id
long
Cardholder ID.
holder_name
string
Cardholder name
card_id
long
Card ID
card_scheme
integer
Card scheme
expired_date
string
Expired date.MM/YY
active_time
string
Active Date
is_share_card
boolean
Is Shared Card
card_token
string
Card Token
card_pan
string
Card PAN
cvv
string
Cvv2
acs_password
string
ACS Password/Static Password
virtual
boolean
Is Virtual Card
pin
string
Pin
card_remark
string
Card Remark
{
"code": "10000",
"msg": "Success",
"total": 1,
"random_key": "<random key used for decryption>",
"sign_type": "RSA",
"app_id": "00000000000000000",
"data": {
"holder_id": 100148,
"holder_name": "Test User",
"card_id": 100114,
"card_scheme": 3,
"expired_date": "08/27",
"active_time": "2024-08-23 05:36:02",
"card_type": 3,
"is_share_card": false,
"card_token": "450620141926",
"card_pan": "658704******3982",
"card_status": 3,
"cvv": null,
"acs_password": null,
"pin": null,
"card_remark": null,
"virtual": true
}
}
// The data in this example has already been decrypted.
Last updated
Was this helpful?