Create Card Contact

Request URI

POST /issuing/card/create-contact

Request Body

Refer to : common

Biz_data :

Name
Type
Description

first_name*

string(64)

First Name

last_name*

string(64)

Last Name

mobile*

string

Mobile

email*

string

Email

Default currency: USD

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "b1c8bCBE-5471-f646-2057-9c0F0eFe",
    "timestamp": "2025-04-07 13:56:46",
    "format": "JSON",
    "version": "2.0",
    "random_key": "<generated_key>",
    "sign_type": "RSA",
    "biz_data": {
        "first_name": "xxe",
        "last_name": "xxxx",
        "mobile": "+861234789999",
        "email": "[email protected]"
    }
}
// The biz_data in this example needs to be encrypted!

Response

Name
Type
Description

contact_id

long

Card Contact ID

{
    "code": "10000",
    "msg": "Success",
    "total": 1,
    "random_key": "<random key used for decryption>",
    "sign_type": "RSA",
    "app_id": "00000000000000000",
    "data": {
        "contact_id": 100848
    }
}
// The data in this example has already been decrypted.

Last updated

Was this helpful?