A AuthMS API Wiki API Reference iam.tianv.com →

GET /admin/verifications

管理员查询租户下所有实名认证记录,支持按认证状态、日期范围过滤和分页,返回脱敏后的认证信息列表

验证服务 `bearerAuth` application/json

Request Parameters

NameInTypeRequiredDefaultExampleConstraintsDescription
status query string No 认证状态过滤:verified/pending/rejected/expired
date_from query string No 起始日期 (YYYY-MM-DD)
date_to query string No 截止日期 (YYYY-MM-DD)
page query integer No 页码,默认1
page_size query integer No 每页数量,默认20

Responses

StatusDescriptionSchema
200认证列表,包含脱敏后的认证信息dto.ListResponse-gitee_com_linmes_authms_micro-services_verification-service_internal_handler_dto_VerificationListItem
400请求参数错误dto.SimpleResponse
401未认证或令牌无效dto.SimpleResponse
403权限不足dto.SimpleResponse
404资源不存在dto.SimpleResponse
500服务内部错误dto.SimpleResponse

Referenced Schemas

dto.ListResponse-gitee_com_linmes_authms_micro-services_verification-service_internal_handler_dto_VerificationListItem

FieldTypeRequiredExampleConstraintsDescription
code integer No
items array of

See gitee_com_linmes_authms_micro-services_verification-service_internal_handler_dto.VerificationListItem

No 统一使用 items
message string No
pagination object No 分页信息(嵌套对象)
timestamp string No
total integer No 总条数(平铺,便于直接读取)

dto.PageInfo

FieldTypeRequiredExampleConstraintsDescription
has_next boolean No HasNext indicates whether there is a next page
has_prev boolean No HasPrev indicates whether there is a previous page
page integer No Page is the current page number (1-based)
page_size integer No PageSize is the number of items per page
total integer No Total is the total number of items across all pages
total_pages integer No TotalPages is the total number of pages

dto.SimpleResponse

FieldTypeRequiredExampleConstraintsDescription
code integer No
message string No
timestamp string No

gitee_com_linmes_authms_micro-services_verification-service_internal_handler_dto.VerificationListItem

FieldTypeRequiredExampleConstraintsDescription
age_group string No
created_at string No
expires_at string No
id string No
liveness_score string No
method string No
provider string No
rejected_reason string No
retry_count integer No
status string No
updated_at string No
user_id string No
verified_at string No