v1

latestOpenAPI 3.1.02026-07-245531,0212.1 MB
Realize Events

Lists specific events according to the tracker ID.

Returns the list of specific events according to the tracker ID. The events list order is according to event creation time.

get/eventmanagement/v1/events/tracker

Query parameters

trackerTokenstring

The token to access the next page of results. Use the token value received in the previous response's parameter 'nextTrackerToken'.

ignoreTrackerExpirystring

The tracker token expires in 48 hours. Set this parameter to 'true' to ignore the expiry and fetch the next available set of events.

filtersstring

Specify the filters. Filter can be added for 'event_type_name' Example: {"event_type_name":"Admin Login"}

Response

OK

nextTrackerTokenstring required

The token to access the next page of results. This parameter will be empty for the last page of the results. For example - eyJpZCI6NTY1NX0=

Example response

{
  "events": [
    {
      "id": 20,
      "area": "Platform",
      "category": "Admin Event",
      "type": "Admin Login",
      "occurenceTime": 1610707530,
      "syslogSeverity": 6,
      "syslogFacility": 23,
      "details": {
        "location": "Pune, India",
        "adminName": "Cloud Admin",
        "adminEmail": "cloud.admin@druva.com",
        "loginResult": "Success",
        "adminActivity": "Admin Login Event",
        "adminIPAddress": "192.168.0.100",
        "adminLoginTime": "2021-07-27T05:46:55Z"
      }
    }
  ],
  "nextTrackerToken": "eyJpZCI6NTY1NX0="
}