Query Card Contacts

Request URI

POST /issuing/card/query-contacts

Request Body

Refer to : common

Biz_data :

Name
Type
Description

contact_id

long

Contact ID

start_date*

string

Begin Time.Format:yyyy-MM-dd HH:mm:ss

end_date*

string

End Time.Format: yyyy-MM-dd HH:mm:ss

page_num

integer

Default value: 1

page_size

integer

Default value: 10.Max value is 30

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "2079Bc5F-339E-8c32-E47D-E35c45db",
    "timestamp": "2025-04-07 13:56:55",
    "format": "JSON",
    "version": "2.0",
    "sign_type": "RSA",
    "biz_data": {
        "contact_id": 100017,
        "start_date": "2024-01-06 00:00:00",
        "end_date": "2025-09-12 00:00:00",
        "page_num": 1,
        "page_size": 30
    },
    "random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!

Response

Name
Type
Description

contact_id

long

Contact ID

first_name

string

First Name

last_name

string

Last Name

mobile

string

Mobile

email

string

Email

create_time

string

Create date. Date format: yyyy-MM-dd HH:mm:ss

{
    "code": "10000",
    "msg": "Success",
    "total": 1,
    "random_key": "<random key used for decryption>",
    "sign_type": "RSA",
    "app_id": "00000000000000000",
    "data": [{
           "contact_id": 100018,
            "first_name": "Xxe",
            "last_name": "Xxxx",
            "mobile": "+861234789999",
            "email": "[email protected]",
            "create_time": "2025-07-24 18:33:51"
    }]
}
// The data in this example has already been decrypted.

Last updated

Was this helpful?