Skip to content
Back to Steward

List audit log entries for an application

GET
/api/v1/audit-logs
cursor
string
Example
ZGVzY3x1cGRhdGVkQXR8MjAyNi0wNS0xM1QxNjowOToxMi4wMDBafDUwN2YxZjc3YmNmODZjZDc5OTQzOTAxMQ

Opaque cursor from a previous response’s nextCursor. Omit on the first page. Cursors are tied to a sort direction — changing order mid-pagination is rejected.

limit
number
default: 50 >= 1 <= 100

Items per page (1-100). Default 50.

order
string
default: desc
Allowed values: asc desc

Sort direction (with id as tiebreaker). Default desc (newest first). The column being sorted is endpoint-specific — see the individual endpoint docs.

applicationId
required
string
Example
507f1f77bcf86cd799439011

Application ID whose audit log entries (and document audit log entries) you want to list

object
items
required
Array<object>
object
id
required
string
event
required
string
Allowed values: CREATED ONBOARDING_STARTED SUBMITTED APPROVED REJECTED REVIEWER_ASSIGNED REVIEWER_UNASSIGNED NOTE_CREATED NOTE_UPDATED NOTE_DELETED SCREENING_HIT_UPDATED DOCUMENT_UPLOADED DOCUMENT_UPDATED RISK_SCORE_CREATED RISK_SCORE_UPDATED APPLICATION_UPDATED KEY_PERSON_LINKED KEY_PERSON_ROLES_UPDATED KEY_PERSON_UNLINKED ONBOARDING_EMAIL_SENT SUBMITTER_DETAILS_UPDATED APPLICATION_EXPORTED
createdAt
required
string
performedByName
string
note
string
hidden
required

Whether the audit log is hidden from the UI

boolean
nextCursor
required
string
nullable
Example
ZGVzY3xjcmVhdGVkQXR8MjAyNi0wNS0xM1QxNjowOToxMi4wMDBafDUwN2YxZjc3YmNmODZjZDc5OTQzOTAxMQ
Example
{
"items": [
{
"id": "string",
"event": {},
"createdAt": "string",
"performedByName": "string",
"note": "string",
"hidden": false
}
],
"nextCursor": "ZGVzY3xjcmVhdGVkQXR8MjAyNi0wNS0xM1QxNjowOToxMi4wMDBafDUwN2YxZjc3YmNmODZjZDc5OTQzOTAxMQ"
}