Autional Autional
API Reference GitHub autional.com →

GET /auth/me/audit-logs

Paginated query of the current user's operation audit logs, supports filtering by time range and operation type

Account Management `bearerAuth` application/json

Request Parameters

NameInTypeRequiredDefaultExampleConstraintsDescription
page query integer No 1 Page number
page_size query integer No 20 Items per page
start_date query string No Start date
end_date query string No End date
action query string No Operation type

Responses

StatusDescriptionSchema
200Audit log listdto.AuditLogListResponse

Referenced Schemas

dto.AuditLogListResponse

FieldTypeRequiredExampleConstraintsDescription
code integer No
items array of

See dto.AuditLogResponse

No Use items uniformly
message string No
pagination object No Pagination info (nested object)
timestamp string No
total integer No Total count (flattened for direct reading)

dto.AuditLogResponse

Audit log record

FieldTypeRequiredExampleConstraintsDescription
action string No user.login Action
created_at string No 2026-04-15T10:30:00Z Timestamp
details string No details Details
id string No audit_abc123 Log ID
ip string No 192.168.1.1 IP
resource string No session Resource
resource_id string No sess_123 Resource ID
status string No success Status
tenant_id string No tnt_xyz789 Tenant ID
user_agent string No Mozilla/5.0 User-Agent
user_id string No usr_abc123 User ID

gitee_com_linmes_authms_base_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