员工身份(EIAM)
查询应用侧角色列表
接口
# 权限
身份管理API是以应用维度授权的,在调用接口前需为不同的应用设置接口权限,详情请参考API权限。
权限代码 | 描述 |
---|---|
app_role_read | 应用侧角色接口的读权限 |
read | 所有读接口的权限 |
all | 全部接口读写权限 |
# 请求说明
GET https://{your_domain}/api/v2/tenant/applications/{application_id}/app-roles?offset=0&limit=10
# 请求头
参数名 | 中文名称 | 必须 | 类型 | 描述 |
---|---|---|---|---|
Authorization | 授权 | 是 | String | 格式:Bearer {access_token} |
Content-Type | 内容类型 | 是 | String | 固定值:application/json; charset=utf-8 |
# 请求示例
无
# 请求参数
参数名 | 中文名称 | 必须 | 类型 | 描述 |
---|---|---|---|---|
application_id | 应用ID | 是 | String | 目标应用ID |
offset | 分页页码 | 是 | Int | 从第0页开始 |
limit | 每页数量 | 是 | Int | 每页数量在1-50之间 |
# 返回示例
正确示例:
HTTP/1.1 200 OK
{
"total": 3,
"offset": 0,
"limit": 10,
"roles": [
{
"id": "20220415170305200-EF22-C2404E358",
"code": "role1",
"name": "role1",
"parentId": null,
"sequence": 1,
"description": null,
"disabled": false,
"remoteId": "role1"
},
{
"id": "20220415170305223-7193-A01122B37",
"code": "role2",
"name": "role2",
"parentId": null,
"sequence": 2,
"description": null,
"disabled": false,
"remoteId": "role2"
},
{
"id": "20220420144449385-C66D-E8C1D1D79",
"code": "admin",
"name": "管理员",
"parentId": null,
"sequence": 3,
"description": null,
"disabled": false,
"remoteId": "admin"
}
]
}
错误示例:
HTTP/1.1 400 Bad Request
{
"error_code": "Idaas.TENANT-COMMON-0005",
"error_msg": "参数错误,limit:最大不能超过50."
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 返回参数
参数名 | 中文名称 | 类型 | 描述 |
---|---|---|---|
total | 总数 | Int | |
offset | 第几页 | Int | |
limit | 每页大小 | Int | |
roles | 角色集合 | List | |
--id | 角色ID | String | |
--code | 角色CODE | String | |
--name | 角色名称 | String | |
-- parentId | 父级角色ID | String | |
--sequence | 序号 | String | |
--description | 描述 | String | |
--disabled | 是否禁用 | String | |
--remoteId | 下游应用中角色ID | String |