List security events
Returns security event logs in reverse-chronological order. Use the cursor parameter for incremental polling — pass the next_cursor from a previous response to retrieve the next page.
Authorization
ApiKeyAuth API key authentication. Format: Api-Key <your_api_key>
In: header
Query Parameters
Filter by actor IP address
Filter by actor UUID
Event category (authentication, authorization, user_lifecycle, application, task, data_access, system, compliance)
Opaque pagination cursor from a previous response
Exact event type (e.g. 'session.login.succeeded')
Event type prefix, must end with '.' (e.g. 'session.')
Page size (default 50, max 200)
Filter events on or after this ISO-8601 datetime
Filter events on or before this ISO-8601 datetime
Comma-separated severity levels (critical, high, medium, low, info)
Filter by subject UUID
Response Body
application/json
curl -X GET "https://developer.idenhq.com/org/{tenant_slug}/api/events/"{
"next_cursor": "string",
"previous_cursor": "string",
"results": [
{
"event_id": "a7a26ff2-e851-45b6-9634-d595f45458b7",
"event_type": "task.created",
"event_version": 2147483647,
"category": "string",
"severity": "string",
"occurred_at": "2019-08-24T14:15:22Z",
"ingested_at": "2019-08-24T14:15:22Z",
"actor": {
"property1": null,
"property2": null
},
"subject": {
"property1": null,
"property2": null
},
"source": {
"property1": null,
"property2": null
},
"payload": null
}
]
}