API Reference
中文

PersonalProfile

Personal Profile

Data Type: Profile

Parameter

Type

Description

Required/Optional

Notes

name

String

Name

Required

full name

phone

Phone

Phone

Required

See the data dictionary “Phone” for details

id

ID

Identity Information

Required

See the data dictionary “ID” for details

email

String

Email

Strongly recommended

Email address

sex

String

Gender

Recommended

Enumeration value:
1.male;
2.female
3. others

birthdate

String

Date of birth

Recommended

Format: YYYY-MM-DD, for example 1998-01-01

birthplace

Address

Place of birth

Recommended

See the data dictionary “Address” for details

address

Address

Personal address

Recommended

Residential address, see the data dictionary “Address” for details

marital_status

String

Marital status

Recommended

Enumeration values:
1.single
2.married
3.separated
4.divorced
5.widowed
6.cohabited
7.Customary (polygamy)

education

String

Educational background

Recommended

Enumeration values:
1.doctorate
2.master
3.bachelor
4.junior_college
5.high_school
6.middle_school
7.below_middle_school

company_name

String

Company name

Recommended

Company name

company_phone

Phone

Company phone number

Recommended

Company phone number, see the data dictionary “Phone” for details

company_address

Address

Company address

Recommended

Company address, see the data dictionary “Address” for details

profession

String

Profession/Position

Recommended

Profession/Position

nationality

String

Nationality

Recommended

Two-digit country code, conforming to ISO 3166 standard, such as CN

{
        "name":"Pierre Laurent",
        "id":{
            "id_country":"GB",
            "id_type":"passport",
            "id_number":"G402****",
            "valid_date":"2028-01-01"
        },
        "phone":{
            "country_code":86,
            "phone_number":"18700001111"
        },
        "email":"xxxx",
        "birthdate":"1998-01-01",
        "birthplace":{
            "country":"GB",
            "region":"The Greater London",
            "city":"London",
            "district":"Knightsbridge",
            "detail":"87-135 Brompton Rd"
        },
        "sex":"male",
        "address":{
            "country":"GB",
            "region":"The Geater London",
            "city":"London",
            "district":"Knightsbridge",
            "detail":" 87-135 Brompton Rd",
            "zip_code":"SW3 1QE"
        },
        "marital_status":"single",
        "education":"master",
        "company_name":"xxx",
        "company_phone":{
            "country_code":86,
            "phone_number":"18700001111"
        },
        "company_address":{
            "country":"GB",
            "region":"The Geater London",
            "city":"London",
            "district":"Knightsbridge",
            "detail":" 87-135 Brompton Rd",
            "zip_code":"SW3 1QE"
        },
        "profession": "XXX",
        "nationality": "CN" 
}