GET api/2.0/settings/statistics/visit This function requires authentication

Description

Returns the user visit statistics for the period specified in the request.

Parameters
Name Description Type Example
fromDate
sent in url
Start period date Date and Time Roundtrip format: 2008-04-10T06-30-00.000Z
toDate
sent in url
End period date Date and Time Roundtrip format: 2008-04-10T06-30-00.000Z
Example
GET api/2.0/settings/statistics/visit
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "fromDate": "2008-04-10T06-30-00.000Z",
  "toDate": "2008-04-10T06-30-00.000Z"
}
Returns

List of point charts

Example Response
{
  "status": 0,
  "response": [
    {
      "DisplayDate": "some text",
      "Date": "2008-04-10T06-30-00.000Z",
      "Hosts": 1234,
      "Hits": 1234
    }
  ]
}