GET api/2.0/security/audit/events/last
Returns a list of the latest changes (creation, modification, deletion, etc.) made by users to the entities (tasks, opportunities, files, etc.) on the portal.
This method doesn't have any parameters.
GET api/2.0/security/audit/events/last
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"Id": 1234,
"User": "some text",
"UserId": "9924256A-739C-462b-AF15-E652A3B1B6EB",
"Action": "some text",
"IP": "some text",
"Browser": "some text",
"Platform": "some text",
"Page": "some text",
"ActionType": "None",
"Product": "None",
"Module": "None",
"Context": "some text"
}
]
}
text/xml
<result>
<status>0</status>
<response>
<Id>1234</Id>
<User>some text</User>
<UserId>9924256A-739C-462b-AF15-E652A3B1B6EB</UserId>
<Action>some text</Action>
<IP>some text</IP>
<Browser>some text</Browser>
<Platform>some text</Platform>
<Page>some text</Page>
<ActionType>None</ActionType>
<Product>None</Product>
<Module>None</Module>
<Context>some text</Context>
</response>
</result>