List security alerts
GET
/api/admin/security/alerts
Code sample: Shell / cURL
curl --request GET \ --url 'https://auth.example.com/api/admin/security/alerts?limit=20' \ --header 'Authorization: Bearer <token>'Lists security alerts with cursor pagination. Use limit/cursor/sort/filter; page and page_size are rejected.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit
integer
Maximum number of records to return.
cursor
string
Opaque pagination cursor returned by the previous response.
sort
string
Sort field. Prefix with - for descending order.
filter
string
Comma-separated filters in field:value form.
Responses
Section titled “ Responses ”Security alert list response.
Media type application/json
object
data
required
Array<object>
object
alert_id
string
id
string
tenant_id
string
type
string
severity
string
status
string
title
string
description
string | null
source_ip
string | null
user_id
string | null
client_id
string | null
metadata
object | null
created_at
string format: date-time
updated_at
string format: date-time
acknowledged_at
string | null format: date-time
acknowledged_by
string | null
resolved_at
string | null format: date-time
resolved_by
string | null
key
additional properties
pagination
required
object
has_more
required
boolean
next_cursor
string
key
additional properties
key
additional properties
Example
{ "data": [ { "alert_id": "alert_123", "type": "suspicious_login", "severity": "high", "status": "open", "title": "Suspicious login detected", "description": "Multiple failed attempts followed by a successful login.", "metadata": { "source_ip": "203.0.113.10" }, "created_at": "2026-06-20T00:00:00.000Z", "acknowledged_at": null, "resolved_at": null } ], "pagination": { "has_more": false }}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}