## Batch contact person
>接口说明
批量处理常用联系人接口
>接口参数说明
~~~[api]
post:/member/contactPerson/batch
*string:firstName#姓
*string:lastName#名
*int:age#年龄
*string:ageType#类型 :adult - 成人,child - 儿童,infant - 婴儿
*string:gender#性别:Female - 女性,Male - 男性
*boject:nationality#国籍
*array:birthday#生日
string:passportNum#护照号
boject:passportCountry#护照签发地
string:province#省份
<<<
success
{
"status": 0,
"msg": "success.",
"timestamp": "20181016040919413"
}
<<<
error
{
"status": 1004,
"msg": "Batch request param is empty.",
"timestamp": "20181107062152157"
}
~~~
>接口请求示例
~~~
{
"contactPersonRequests":[
{
"guid":"db788d0b-e72f-11e8-9c21-71cee18a8198",
"firstName": "Wang000",
"lastName": "Wu000",
"age": "20",
"ageType": "adult",
"gender": "Female",
"nationality": {
"countryCode": "BR",
"countryName": "Brazil",
"countryPhone": "+55"
},
"birthday": [
"1993",
"01",
"01"
],
"passportNum": "123456",
"passportCountry": {
"countryCode": "FR",
"countryName": "France",
"countryPhone": "+33"
},
"province": "123"
},
{
"firstName": "Wang01",
"lastName": "Wu01",
"age": "20",
"ageType": "adult",
"gender": "Female",
"nationality": {
"countryCode": "BR",
"countryName": "Brazil",
"countryPhone": "+55"
},
"birthday": [
"1993",
"01",
"01"
],
"passportNum": "123456",
"passportCountry": {
"countryCode": "FR",
"countryName": "France",
"countryPhone": "+33"
},
"province": "123"
},
{
"firstName": "Wang02",
"lastName": "Wu02",
"age": "20",
"ageType": "adult",
"gender": "Female",
"nationality": {
"countryCode": "BR",
"countryName": "Brazil",
"countryPhone": "+55"
},
"birthday": [
"1993",
"01",
"01"
],
"passportNum": "123456",
"passportCountry": {
"countryCode": "FR",
"countryName": "France",
"countryPhone": "+33"
},
"province": "123"
}
]
}
~~~