2.5 获取员工ID列表
GET
https://openapi.weiling.cn/openapi/user/dept_user/list请求参数
Query 参数
access_token
string
调用接口凭证
cursor
string
分页游标
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
msg
string
必需
data
object
必需
cursor
string
分页游标
dept_users
array [object {2}]
员工与部门关系列表
示例成功示例
{
"code": 0,
"msg": "success",
"data": {
"cursor": "",
"dept_users": [
{
"user_id": "",
"dept_id": [
"xxx",
"xxx"
]
}
]
}
}
最后修改时间: 1 年前