Retrieve details of a cardholder
Request
Body Params application/json
{
"request_id": "",
"cardholderId": "8201",
"companyId": "4101",
"sign": "4B8ED59496489E132DFE27F296D57E9662969E497502508B53BD39C3AAAE3F79"
}
Request samples
curl --location --request POST 'https://sandbox.vcc.top/api/cardholder/query' \
--header 'Content-Type: application/json' \
--data-raw '{
"request_id": "",
"cardholderId": "8201",
"companyId": "4101",
"sign": "4B8ED59496489E132DFE27F296D57E9662969E497502508B53BD39C3AAAE3F79"
}'
Responses
application/json {
"code": 0,
"msg": {
"zh-CN": "成功",
"en-US": "Success"
},
"data": {
"cardholderId": 8201,
"firstName": "Jon",
"lastName": "Doe",
"email": "test1811@email.com",
"mobilePrefix": "+1",
"mobile": "9521325",
"birthDate": "1996-07-02 00:00:00",
"countryCode": "US",
"billingState": "NY",
"billingCity": "New York",
"billingAddress": "1600 Amphitheatre Parkway",
"billingPostal": "94043",
"remark": "test",
"isStatus": "1",
"companyId": 4101
}
}
Modified at 2024-11-15 07:35:50