接口说明:

获取域中的所有用户,使用 token 访问。

基本信息:

属性
API /api/dash/user/getAllUsers
Method GET

请求参数:

字段名称 参数类型 参数说明
token String 鉴权 token
sort String (Optional) 用户列表的排序方法
offset Int (Optional) 从第几条数据开始返回,适用于分页
limit Int (Optional) 返回数据条数,适用于分页

输入URL示例: https://youdata.163.com/api/dash/user/getAllUsers?token=1564644553413e707fada60f1c72d500322c9

返回结果示例:

{
    "code": 200,
    "result": [
        {
            "id": 1,
            "email": "email1@163.com",
            "nick": "Jack",
            "phone": "13136123456",
            "uniqueId": "email1@163.com"
        },
        {
            "id": 2,
            "email": "email2@163.com",
            "nick": "Amy",
            "phone": "13026361234",
            "uniqueId": "email2@163.com"
        },
        {
            "id": 3,
            "email": "email3@163.com",
            "nick": "Sam",
            "phone": null,
            "uniqueId": "email3@163.com"
        }
    ],
    "logPath": "http://127.0.0.1:8009/operation/log/kB8CVXkN2KHLBBh1EJBpcG"
}