员工身份(EIAM)

查询认证数

接口

# 权限

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

权限代码 描述
operation_log_read 日志审计接口的读权限
all 全部接口读写权限
read 所有读接口的权限

# 请求说明

GET https://{your_domain}/api/v2/tenant/logs/auth-num?start_time=2022-03-25 00:00:00&end_time=2022-04-19 10:50:59&offset=0&target_type=&target_name=

# 请求头

参数名 中文名称 必须 类型 描述
Authorization 授权 String 格式:Bearer {access_token}
Content-Type 内容类型 String 固定值:application/json; charset=utf-8

# 请求示例

# 请求参数

参数名 中文名称 必须 类型 描述
start_time 开始时间 String yyyy-MM-dd HH:mm:ss
end_time 结束时间 String yyyy-MM-dd HH:mm:ss
offset 分页页码 Int 从第0页开始
target_type 客体类型 String
target_name 客体名称 String

# 返回示例

正确示例:
HTTP/1.1 200 OK
{
    "auth_total": 35,
    "auth_failed_total": 10,
    "auth_succeed_total": 25
}


错误示例:
HTTP/1.1 400 Bad Request
1
2
3
4
5
6
7
8
9
10
11

# 返回参数

参数名 中文名称 类型 描述
auth_total 认证总数 Int
auth_failed_total 认证失败数 Int
auth_succeed_total 认证成功数 Int