v1

latestOpenAPI 3.1.02026-07-245531,0212.1 MB
Event Management

List all events

Returns the list of all the events generated in Druva inSync. You can also get Events API response in CEF and Syslog formats. For more information, see <a href=https://developer.druva.com/docs/event-apis>Events API to export inSync events.</a>

get/eventmanagement/v2/events

Query parameters

trackerstring

Each Events API request returns a response that contains a maximum of 500 inSync events. If there are more than 500 events, the response also contains a Tracker, an identifier that contains inSync database reference and identifies the next set of unique events when a successive Events API call is made. Tracker is valid for the next 48 hours after a response is generated. You must include the Tracker in your subsequent request to fetch the next unique list of inSync events. Do not include the Tracker in the first Events API request. :fa-info-circle:If you do not specify the Tracker in the successive request, inSync returns you the same list of events in response that you received in the first Event API request.

Response

OK

trackerstring

Tracker is valid for the next 48 hours after a response is generated. :fa-info-circle: Include the Tracker in your subsequent request to fetch the next unique list of inSync events.

nextPageExistsboolean

The flag to know if next page of result exists.

Example response

{
  "tracker": "MTExMQ==",
  "nextPageExists": true,
  "events": [
    {
      "eventID": 101,
      "initiator": "ernie.carter@druva.com",
      "inSyncDataSourceID": 2,
      "inSyncDataSourceName": "DDSPL1111",
      "clientVersion": "6.1.1r73332",
      "clientOS": "win32",
      "inSyncUserID": 11,
      "inSyncUserName": "sagard",
      "inSyncUserEmail": "ernie.carter@druva.org",
      "profileID": 3,
      "profileName": "document_desktop_profile",
      "eventType": "API Login",
      "eventState": "Success",
      "eventDetails": "Total Backup Size:0, Files Backed up:0, Files Missed:0, System and App Settings:Yes, Total Bytes Transferred:0, eventsGroupId:2",
      "timeStamp": "2019-05-28T07:07:00Z",
      "ip": "114.143.238.10"
    }
  ]
}