POST https://qw-openapi-tx.dustess.com/open-integration-api/friend/v1/batchUnBindContact?accessToken=
Content-Type: application/json| 请求参数名 | 类型 | 说明 | 是否必须 |
|---|---|---|---|
| friendIds | Int[] | 好友关系id列表(单次最多操作100个) | true |
json - Request-Example:{
"friendIds": [3638,3639]
}| 响应参数名 | 类型 | 说明 |
|---|---|---|
| code | Int | 响应码,0:成功 |
| msg | String | 消息提示 |
| success | Bool | 成功标识 |
| data | Object[] | 响应码 |
| data.id | Int | 好友id |
| data.code | Int | 好友解绑联系人错误码(只有失败才会返回该字段) |
| data.msg | String | 好友解绑联系人错误消息(只有失败才会返回该字段) |
{
"success": true,
"code": 0,
"msg": "",
"data": [
{
"id": 3638
},
{
"id": 3639,
"code": 9999,
"msg": "错误信息"
}
]
}{
"success": false,
"code": 10001,
"msg": "system unknown error",
"data": []
}