List all audit logs

Returns a list of audit logs. The audit logs are returned sorted by creation date in ascending order.

GET/v3/audit-logs
JWT
auditLog:read

Parameters

NameTypeInDescription
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"
resourceIdobjectqueryUnique identifier for the resource.
resourceobjectqueryName for the resource.
actionobjectqueryName of the action.
actorIdobjectqueryUnique identifier of the actor who performed the action.
actorEmailobjectqueryEmail address of the actor who performed the action.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "resource": "string",
    "action": "string",
    "changes": [
      {
        "propertyName": "string",
        "oldValue": null,
        "newValue": null
      }
    ],
    "resourceId": "string",
    "ipAddress": "string",
    "actorId": "string",
    "actorName": "string",
    "actorEmail": "string"
  }
]