query auditing events
GET/org/:orgId/auditingEvent/query
Query auditing events with advanced filtering, sorting, and pagination using CRUD query language. Supports complex filters, sorting by multiple fields, and pagination.
Request
Path Parameters
Organization ID
Query Parameters
Number of items per page (default: 20, max: 1000)
Page number (default: 1)
LISP-style filter expression (e.g., '(= event_type \
Sort fields: 'field:asc,field2:desc' or '-field,field2' format (e.g., 'creation_time:desc,event_type:asc' or '-creation_time,event_type')
Responses
- 200
- 400
- 500
Paginated list of auditing events
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
body
object
Body holds the value of the "body" field.
Body holds the value of the "body" field.
CreationTime holds the value of the "creation_time" field.
EventType holds the value of the "event_type" field.
ID of the ent.
LastUpdateTime holds the value of the "last_update_time" field.
OrganizationID holds the value of the "organization_id" field.
Possible values: [AUDITED
, PENDING
, FAILED
, DONE
]
{
"data": [
{
"body": {},
"creationTime": "string",
"eventType": "string",
"id": "string",
"lastUpdateTime": "string",
"organizationID": "string",
"status": "AUDITED"
}
],
"page_number": 0,
"page_size": 0,
"total_count": 0
}
Bad request error
- application/json
- Schema
Schema
string
Internal server error
- application/json
- Schema
Schema
string