Update Cardholder
Updates the specified individual cardholder by setting the values of the parameters passed.
Request URI
POST
/issuing/holder/update
Request Body
Refer to : common
Biz_data :
Name
Type
Description
holder_id
long
Cardholder ID.
mobile*
string(16)
The whole mobile phone number.
Need to add an international area code
first_name*
string(50)
First name.
last_name*
string(50)
Last name.
id_no*
string(6-20)
ID number.
issuance_date
string
Issuance date.Format:yyyy-MM-dd
expires_on
string
Expires On.Format:yyyy-MM-dd
email*
string
Business emailEmails are validated against the rfc6530 standard.
birthday*
string
Date of Birth.Format:yyyy-MM-dd
address.postal_code*
string(4-8)
The address zip code, or postal code.
Request Example
{
"app_id": "00000000000000000",
"partner_id": "00000000000000000",
"sub_partner_id": "",
"request_id": "dcB88bc9-b6bc-26B8-b4c9-AF9cED1B",
"timestamp": "2025-04-07 13:52:14",
"format": "JSON",
"version": "2.0",
"sign_type": "RSA",
"biz_data": {
"holder_id": 103006,
"mobile": "+8618197431263",
"first_name": "Test",
"last_name": "User",
"id_no": "51f635df-d206-449c",
"id_type": 1,
"email": "[email protected]",
"birthday": "1990-11-08",
"gender": 1,
"issuance_date": "2024-07-21",
"expires_on": "2030-07-24",
"nationality_code": "BR",
"address": {
"city_name": "beijing",
"country_code": "BR",
"postal_code": "045675",
"state": "proident enim",
"line": "Wivjq Njutsfd Hiqouxlbs Uhdt Gtjpzy",
"line2": "Ebtorcbaq Enojuvm Ikw Xvlgum Wibq U"
}
},
"random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!
Response
Name
Type
Description
holder_id
long
Cardholder ID
id_no
string
ID number.
{
"app_id": "00000000000000000",
"partner_id": "00000000000000000",
"sub_partner_id": "",
"request_id": "766b69FD-2aEb-bf71-cee8-e8eBbBeb",
"timestamp": "2025-04-07 13:52:15",
"format": "JSON",
"version": "2.0",
"sign_type": "RSA",
"biz_data": {
"holder_id": "103006"
},
"random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!
Last updated
Was this helpful?