<接口地址>:/userapi/accounts/users
<请求方式>:GET
<请求类型>:URL参数
<响应类型>:JSON
<请求参数>:
参数名称 | 是否必须 | 类型 | 默认值 | 描述 |
current_page | 否 | Int | 1 | 当前请求页数 |
page_size | 否 | Int | 20 | 每页请求记录数 |
<请求示例>:
curl -H "token:a3af84f7c1d0d935024ba58b5da78aaa" https://v6-api.jiankongbao.com/userapi/accounts/users?current_page=1&page_size=10
<响应数据>:
参数名称 | 数据类型 | 描述 |
total_records | Int | 总共用户数 |
total_pages | Int | 总共页数 |
current_page | Int | 当前页数 |
page_size | Int | 每页请求的用户数 |
user_id | Int | 用户id |
user_email | String | 用户email |
user_name | String | 用户名 |
user_status | Int | 用户状态 0:暂停 1:正常 2:删除 |
mobile | String | 用户手机号 |
country_code | int | 国家代码 |
telephone | String | 接收告警的座机号 |
signup_time | int | 注册时间 |
last_visit_time | int | 最近一次登录时间 |
String | 用户qq | |
account_id | Int | 账号id |
account_type | Int | 帐户类型 1:个人账户 2:企业账户 3:代理商账户 |
role_id | Int | 用户角色 1:管理员 2:高级 3:只读 |
organization | Array | 用户所在分组 |
organization_id | Int | 分组id |
organization_name | String | 分组名称 |
country_code | Number | 国家代码 |
has_app_push | Number | 是否设置了APP推送,1是,0否 |
language | String | 语言 |
user_timezone | String | 时区,如Asia/Shanghai |
timezone_diff | String | 时区差 |
<响应示例>:
{ "pagination": { "total_records": 1, "total_pages": 1, "current_page": 1, "page_size": 20 }, "data": [ { "user_id": 25227982, "user_email": "dengchao@cloudwise.com", "user_name": "dengchao", "user_status": 1, "mobile": "", "telephone": "", "signup_time": 1473235314, "last_visit_time": 1491565549, "qq": "", "account_id": 1320, "account_type": 2, "role_id": 1, "organization": [ { "organization_id": 1175, "organization_name": "监控宝" } ], "country_code": 86 } ] }