Skip to main content

List Admin Logs

Returns a list of administrator log events. Only the 1000 earliest events will be returned; you may need to call this multiple times with mintime to page through the entire log.

Requires "Grant read log" API permission.

We recommend requesting logs no more than once per minute.

Parameters

ParameterDescription
Minimum TimeOnly return records that have a Unix timestamp in seconds after mintime. This can help to avoid fetching records that have already been retrieved.

Example Output

{
"stat": "OK",
"response": [
{
"action": "user_update",
"description": "{\"notes\": \"Joe asked for their nickname to be displayed instead of Joseph.\", \"realname\": \"Joe Smith\"}",
"isotimestamp": "2020-01-24T15:09:42+00:00",
"object": "jsmith",
"timestamp": 1579878582,
"username": "admin"
}
]
}

Workflow Library Example

List Admin Logs with Duo and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop