编辑老人的联系人
HTTP方法
POST
HTTP URL
/v1/customer/contact/set
Header参数
- Content-Type采用 application/json
- 认证相关头字段,请参考wsse认证
Body数据
参数 | 类型 | 必需 | 描述 |
---|---|---|---|
id | string | 是 | 联系人id |
cId | string | 是 | 老人cId |
name | string | 是 | 老人姓名 |
mobile | string | 是 | 电话号码 |
nickName | string | 是 | 昵称 对小度设备下发时用昵称作为小度通讯录联系人姓名 |
contactType | string | 是 | ORDINARY-普通联系人 URGENT-紧急联系人 |
numberType | string | 是 | 小度号-0, 11位移动手机电话号-1, SIP号-2, 固定电话-3, 三方uid-4, 呼叫中心(三方虚拟号)-5 |
relationType | string | 是 | 与客户关系 |
identityType | string | 是 | 证件类型 |
请求示例
{
"id": 1568,
"cId": "1559015799484305408",
"name": "齐文浩",
"mobile": "156960923",
"numberType": "1",
"nickName": "",
"contactType": "URGENT",
"relationType": "SPOUSE",
"identityType": "IDENTIFY_CARD"
}
HTTP响应
参数 | 类型 | 描述 |
---|---|---|
code | int | 状态码,0为成功,非0为失败 |
message | string | 对于状态码的简单描述 |
正常响应
{
"code": 0,
"message": "Success",
"data": 1,
"traceId": "3c63ac9314760c191648223233452527616x"
}