v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Audit Trail

Query audit trail

Query audit trail entries for the authenticated user

post/v6/auditTrail/query

Request body

cursorstring nullable

Cursor from the previous paginated response

limitinteger

Page size, i.e. number of items to return per page

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "id": "aud_28868401",
      "company": {
        "id": "co_28868401",
        "name": "Acme Corp"
      },
      "editor": {
        "id": "emp_28868401",
        "userId": "usr_28868401",
        "email": "editor@example.com"
      },
      "action": "UPDATE",
      "revisions": [
        {
          "internal_key": "some_internal_key",
          "some_other_field": 23434
        }
      ]
    }
  ]
}