最近更新时间:2021-08-27
ListUsers
查看用户的全部IAM子账号信息
名称 | 数据类型 | 示例 | 描述 | 是否必填 |
---|---|---|---|---|
Action | String | ListUsers | 系统规定参数,取值:ListUsers | Y |
name | String | testUser | 用户名(支持模糊查询) | N |
fullName | String | testUser | 显示名(支持模糊查询) | N |
keyword | String | testUser | 子用户名或显示名(支持模糊查询) | N |
phone | String | 1868888**** | 手机号(支持模糊查询) | N |
String | alice@example.com | 子账号的电子邮箱(支持模糊查询) | N | |
page | Integer | 1 | 页码,从第一页开始 | N |
size | Integer | 1 | 每页数量(取值范围:1-200) | N |
名称 | 数据类型 | 示例 | 说明 |
---|---|---|---|
Page | Integer | 1 | 页码 |
size | Integer | 10 | 每页数量 |
totalCount | Integer | 10 | 总数量 |
totalPages | Integer | 1 | 总页数 |
list | Array | 子账号信息集合 |
list详情:
名称 | 数据类型 | 示例 | 说明 |
---|---|---|---|
id | String | 48b1cb3a-8c31-46a7-aa31-*** | 子账号id |
name | String | testUser | 用户名,子账号的登录名称 |
fullName | String | 测试用户 | 显示名 |
phone | String | 1868888**** | 手机号 |
email | String | alice@example.com | 子账号的电子邮箱 |
parentId | String | d3fbd550-f4ba-4edf-a5f8-******** | 主账号id |
enabled | Integer | 0 | 子账号可否登录控制台 |
childEnabled | Integer | 1 | 子账号启用/禁用状态 |
http://api.unicloud.com/user/user?Action=ListUsers&page=1&size=8
{
"page": 1,
"size": 8,
"totalCount": 1,
"totalPages": 1,
"list": [
{
"id": "48b1cb3a-8c31-46a7-aa31-***********",
"name": "testUser",
"fullName": null,
"phone": null,
"email": null,
"enabled": 0,
"parentId": "d3fbd550-f4ba-4edf-a5f8-********"
"childEnabled": 1
}
]
}
错误码 | 错误信息 | 状态码 | 错误描述 |
---|---|---|---|
OverMaxPageSize | Max available page size is 200, please check your param. | 400 | 页面最多展示200条数据 |
OverMinPageSize | Min available page size is 1, please check your param. | 400 | 页面展示数量的取值最小为1 |
InvalidParameter | PageError | 400 | 页码取值错误 |