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

Description

Returns all the latest user login activity, including successful logins and error logs.

Parameters

This method doesn't have any parameters.

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

List of login events

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