API Reference
English

个人资料

个人资料

数据类型:Profile

字段

类型

含义

建议

备注

name

String

姓名

必须

姓名全称

phone

Phone

手机/电话

必须

详见 Phone 手机

id

ID

身份信息

强烈建议

详见 ID 身份信息

email

String

邮箱

强烈建议

个人邮箱地址

sex

String

性别

建议

枚举值:

  1. male:男性
  2. female:女性
  3. others:其他

birthdate

String

出生日期

建议

格式:YYYY-MM-DD ,例如 1998-01-01

birthplace

Address

出生地

建议

详见 Address 地址信息

address

Address

地址信息

建议

个人常住地址,详见 Address 地址信息

education

String

学历

建议

枚举值:
1.博士:doctorate
2.硕士:master
3.本科:bachelor
4.大专:junior_college
5.高中:high_school
6.初中:middle_school
7.初中以下:below_middle_school

profession

String

职业/职位

建议

所在职业/职位

marital_status

String

婚姻状况

建议

枚举值:
1.single: 单身
2.married:已婚
3.separated:分居
4.divorced:离异
5.widowed:丧偶
6.cohabited: 同居
7.customary: 风俗婚姻,如一夫多妻(polygamy)

company_name

String

工作单位

建议

所在工作单位

company_phone

Phone

工作单位电话

建议

所在工作单位电话,详见 Phone 手机

company_address

Address

工作单位地址

建议

所在工作单位地址,详见 Address 地址信息

nationality

String

国籍

建议

两位国家码,符合 ISO 3166 标准

   {
        "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" 
    }