修改外部联系人
简要描述:
修改外部联系人
请求URL:
请求方式:
- POST
请求头Headers:
- Authorization: Bearer xxx(PS:xxx是代表login接口返回,Bearer后面有个空格,除了login接口,后续所有接口都携带此参数)
- Content-Type:application/json
参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
sessionId | 是 | string | |
wxId | 是 | string | 微信id |
alias | 否 | string | 别名 |
desc | 否 | string | 描述 |
phone | 否 | array | 电话 |
company | 否 | string | 公司 |
返回数据:
参数名 | 类型 | 说明 |
---|---|---|
code | number | 200成功,其他失败 |
msg | string | 反馈信息 |
请求参数示例
{
"sessionId":"****",
"wxId":"7881***22145",
"alias":"张三",
"desc":"test",
"phone":["17***53","17***54"],
"company":"***"
}
成功返回示例
{
"msg": "操作成功",
"code": 200
}
错误返回示例
{
"msg": "session timeout or authentication token not found or invalid credit info",
"code": 500
}