The API allows you to list audit log entries.
Returns list of log entries filtered by specified query parameters.
name | type | description | constraints |
---|---|---|---|
direction | query | ||
entityGuid | query | ||
entityType | query | ||
filter | query | ||
from | query | long | |
orderBy | query | ||
to | query | long | |
userGuid | query |
media type | data type | description |
---|---|---|
application/json | array of AuditLogEntryListRecord (JSON) | list of log entries filtered by specified query parameters |
GET /audit-log
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"entryTs" : 12345,
"userName" : "...",
"srcIp" : "...",
"message" : "...",
"entityType" : "...",
"entityName" : "...",
"entityDetails" : "...",
"userGuid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"entityGuid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
} ]