更新员工微信账号
- 接口:/employee/update/weiXinUserId
- Method:POST
- 数据格式:JSON
请求参数
参数 | 类型 | 必须 | 默认值 | 主键 | 描述 |
---|---|---|---|---|---|
employeeId | string | Y | Y | 员工工号 | |
weiXinUserId | string | Y | 微信userId |
返回数据
字段 | 类型 | 描述 |
---|---|---|
employeeId | string | 员工工号 |
weiXinUserId | string | 微信userId |
示例
请求数据
{
"timestamp": 123456,
"data": [
{
"employeeId": "001",
"weiXinUserId": "123"
}
]
}
返回数据(成功)
{
"code": "ACK",
"message": "",
"data": [
{
"employeeId": "001",
"weiXinUserId": "123"
}
]
}
返回数据(失败)
{
"code": "NACK",
"message": null,
"errorData":{"001":"找不到该员工"}
...
}