简要描述:
根据企业获取推荐客服列表
请求URL:
plugin.decorate.admin.decorate-common.search-group-chat-employees
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
name | 否 | string | 客服名 |
pageSize | 否 | number | 分页数量 默认20 |
page | 否 | int | 分页 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": {
"current_page": 1,
"data": [{
"id": 1,
"uniacid": 2,
"uid": 2662,
"crop_id": 1,
"name": "客服1",
"avatar": "http:\/\/localhost:82\/addons\/yun_shop\/static\/images\/photo-mr.jpg",
"member_nickname": "15000245941",
""member_avatar": "http:\/\/localhost:82\/addons\/yun_shop\/static\/images\/photo-mr.jpg",
"member_avatar": "15000245941",
"crop_name": "企业名称1"
}],
"first_page_url": "http:\/\/localhost:82\/addons\/yun_shop\/api.php?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http:\/\/localhost:82\/addons\/yun_shop\/api.php?page=1",
"next_page_url": null,
"path": "http:\/\/localhost:82\/addons\/yun_shop\/api.php",
"per_page": 10,
"prev_page_url": null,
"to": 5,
"total": 5
}
}
错误时返回:
{
"result": 0,
"msg": "暂无数据",
"data": []
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
data[total] | int | 数据总条数 |
data[per_page] | int | 每页显示多少条数据 |
data[current_page] | int | 当前页 |
data[data]返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | id |
name | string | 昵称 |
avatar | string | 头像 |
crop_name | string | 企业名称 |
crop_id | int | 企业ID |
member_nickname | string | 会员昵称 |
member_avatar | string | 会员头像 |
备注:
- 更多返回错误代码请看首页的错误代码描述