get-users 接口
获取系统用户列表信息,仅管理员有权限。
请求方式
GET http://ip/usapi?method=get-users
参数 | 说明 |
---|---|
method | 方法名称:get-users |
返回数据
{
"result": 0,
"users": [
{
"id": "Admin",
"type": 1
},
{
"id": "Test",
"type": 2
}
]
}
属性 | 说明 |
---|---|
result | 返回状态,0:数据获取成功,返回其它值请参考 API 状态码 |
users | 用户列表数组,id:用户名,type:类型,1 为管理员 |