Events API

This API returns the type of events stored in the system. The response contains the details like name, the key and the columns with their types for available for each of the events. This API can be used to query the data stored under each of those event types. The eventName field can be used to query the current, history and bulk data using this APIs. The keys information can be used to further filter the data while using the data access APIs.

URI Method Description
/ids-data-api/v2/events/
GET Get the event types stored in the system.

Sample

{
 "eventName": "aggregation_event",
 "keys": ["pid", "groupname", "ruleid", "metric", "servertime"],
 "fields": {
   "winstarttime" : "TIMESTAMP",
   "winendtime" : "TIMESTAMP",
   "metric" : "TEXT",
   "servertime" : "TIMESTAMP",
 }
 
}