Get super-admin audit logs
Retrieve audit logs of super-admin actions. Only super-admins can view audit logs.
Query Parameters
- limit integer
Possible values:
>= 1and<= 1000Default value:
100Maximum number of audit log entries to return
- offset integer
Number of audit log entries to skip
- super_admin_email email
Filter by super-admin email address
- organization_id uuid
Filter by organization ID
Header Parameters
- SlashID-OrgID string required
The organization ID
Example: af5fbd30-7ce7-4548-8b30-4cd59cb2aba1
Responses
- 200
- 403
List of audit log entries
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage stringresult object[]
audit_id uuidUnique identifier for the audit log entry
super_admin object
entity_class stringPossible values: [
unknown,identity,credential,policy,resource,application,canonical_application,sensor]entity_id stringidentifier stringrequest_method stringHTTP method of the request
request_path stringPath of the endpoint accessed
organization_id stringorganization_name stringName of the organization where the action was performed
metadata objectAdditional metadata about the request
created_at date-timeTimestamp of the action
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
],
"result": [
{
"audit_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"super_admin": {
"entity_class": "unknown",
"entity_id": "string",
"identifier": "string"
},
"request_method": "string",
"request_path": "string",
"organization_id": "string",
"organization_name": "string",
"metadata": {},
"created_at": "2005-12-24T18:29:30.033157Z"
}
]
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage string
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
]
}