获取员工列表
请求地址
/api/v2/business/employee_list
公共请求参数
请求参数
| 参数 | 必填 | 类型 | 说明 |
|---|---|---|---|
| page_size | 是 | int | 页面大小, 取值 1 ~ 1000 |
| page_num | 是 | int | 第几页, , 取值 1 ~ 10000 |
响应参数
| 名称 | 类型 | 说明 |
|---|---|---|
| total | int | 门店总数 |
| list | list | 门店列表 |
| has_next_page | bool | 是否有下一页 |
| id | int | 用户ID |
| name | string | 店铺名称 |
| username | string | 用户账号 |
| shop_id | int | 门店id |
| mobile_phone | string | 用户手机号 |
| avatar | string | 用户头像 |
| description | string | 用户描述 |
| is_admin | string | 是否为管理员 |
| wechat_name | string | 绑定的微信名称 |
| create_time | string | 创建时间 |
请求示例
:::: tabs
::: tab biz_content
{
"page_num": 1,
"page_size": 1
}
::: ::: tab 原始数据
{
"open_app_id": "kd100020191120",
"open_mch_id": "60882970237033",
"timestamp": 1574841366,
"sign_type": "MD5",
"token": "087c96a2-5557-4237-a09b-4ca0bcedbdbf",
"biz_content": "{\"page_num\": 1, \"page_size\": 1}",
"sign": "4ca35a6eb144d214c09314283af94439"
}
::: ::::
响应示例
:::: tabs
::: tab result
{
"code": 0,
"data": {
"has_next_page": true,
"list": [
{
"avatar": "http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTK0xvVI6ia2wLxK0icmLicbF0wsR4MIgoPSEJjQezE4oAgkvkroOkdo0iaVQZIwfm1Vj5mB4zP6JibkYnQ/132",
"create_time": "2019-11-18 13:59",
"description": "",
"id": 79,
"is_admin": false,
"mobile_phone": "16675610614",
"name": "3圈酷点",
"shop_id": 10,
"status": 1,
"username": "3kd",
"wechat_appid": "wxf3d492ca8b1ef13c",
"wechat_name": "三圈",
"wechat_openid": "oLW_F0hZlkVC6NWbt0yBOtzW_7j8"
}
],
"page_num": 1,
"page_size": 1,
"total": 24
},
"msg": "success",
"succeed": true
}
:::
::: tab 原始数据
{
"result": "{\"code\":0,\"data\":{\"has_next_page\":true,\"list\":[{\"avatar\":\"http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTK0xvVI6ia2wLxK0icmLicbF0wsR4MIgoPSEJjQezE4oAgkvkroOkdo0iaVQZIwfm1Vj5mB4zP6JibkYnQ/132\",\"business_id\":1,\"create_time\":\"2019-11-18 13:59\",\"description\":\"\",\"id\":79,\"is_admin\":false,\"mobile_phone\":\"16675610614\",\"name\":\"3圈酷点\",\"shop_id\":10,\"status\":1,\"user_no\":\"\",\"user_type\":0,\"username\":\"3kd\",\"wechat_appid\":\"wxf3d492ca8b1ef13c\",\"wechat_name\":\"三圈\",\"wechat_openid\":\"oLW_F0hZlkVC6NWbt0yBOtzW_7j8\"}],\"page_num\":1,\"page_size\":1,\"total\":24},\"msg\":\"success\",\"succeed\":true}",
"sign": "a0acfe01490304af432db8c0b798c50e"
}
::: ::::