员工身份(EIAM)

分页查询应用账号的应用端权限

接口

# 权限

身份管理API是以应用维度授权的,在调用接口前需为不同的应用设置接口权限,详情请参考API权限

权限代码 描述
account_all 账户管理接口的读写权限
account_read 账户管理接口的读权限
all 全部接口读写权限
read 所有读接口的权限

# 请求说明

GET https://{your_domain}/api/v2/tenant/applications/{application_id}/accounts/permissions/page?offset=0&limit=1

# 请求头

参数名 中文名称 必须 类型 描述
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
{
    "number": 0,
    "total": 2,
    "size": 10,
    "list": [
        {
            "accountId": "20230922093020557-4362-A6C9CF0EE",
            "roles": [
                {
                    "id": "20230914164827506-35F4-A740454E5",
                    "remoteId": "testRoleA"
                }
            ]
        },
        {
            "accountId": "20230921140018768-35A4-7DBD541BC",
            "roles": [
                {
                    "id": "20230914164827506-35F4-A740454E5",
                    "remoteId": "testRoleA"
                }
            ],
            "funcPerms": [
                {
                    "id": "20230914153344573-EB4E-3CB09F9B6",
                    "remoteId": null
                },
                {
                    "id": "20230920113324284-EFDF-BE5B34E7D",
                    "remoteId": null
                }
            ]
        }
    ]
}


错误示例:
HTTP/1.1 400 Bad Request
{
    "error_code": " APP.0001",
    "error_msg": "应用不存在"
}
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

# 返回参数

参数名 中文名称 类型 描述
accountId 应用账号ID Object
roles 角色信息集合 Object 集合中id: IDaaS的主键信息,remoteId: 远程 ID
funcPerms 功能权限信息集合 Object 集合中id: IDaaS的主键信息,remoteId: 远程 ID
dataPerms 数据权限信息集合 Object 集合中id: IDaaS的主键信息,remoteId: 远程 ID

# 错误码

状态码 错误码 错误信息 处理措施
400 APP.0001 应用不存在 请检查应用是否存在
App does not exist