GET api/2.0/security/audit/events/last This function requires authentication

Description

Returns a list of the latest changes (creation, modification, deletion, etc.) made by users to the entities (tasks, opportunities, files, etc.) on the portal.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/security/audit/events/last
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of audit trail data

Example Response
{
  "status": 0,
  "response": [
    {
      "Id": 1234,
      "Date": "2008-04-10T06-30-00.000Z",
      "User": "some text",
      "UserId": "9924256A-739C-462b-AF15-E652A3B1B6EB",
      "Action": "some text",
      "IP": "some text",
      "Country": "some text",
      "City": "some text",
      "Browser": "some text",
      "Platform": "some text",
      "Page": "some text",
      "ActionType": "None",
      "Product": "None",
      "Module": "None",
      "Context": "some text"
    }
  ]
}