Update Card Contact

Request URI

POST /issuing/card/update-contact

Request Body

Refer to : common

Biz_data :

Name
Type
Description

contact_id*

long

Card Limit ID

first_name*

string(64)

First Name

last_name*

string(64)

Last Name

mobile*

string

Mobile

email*

string

Email

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "c5Ac6897-d5bd-5310-DdAc-ec16f9Ab",
    "timestamp": "2025-04-07 13:56:48",
    "format": "JSON",
    "version": "2.0",
    "random_key": "<generated_key>",
    "sign_type": "RSA",
    "biz_data": {
        "contact_id": 100848,
        "first_name": "xxe",
        "last_name": "xxxx",
        "mobile": "+861234789999",
        "email": "[email protected]"
    }
}
// The biz_data in this example needs to be encrypted!

Response

{
    "code": "10000",
    "msg": "Success"
}

Last updated

Was this helpful?