ApiEventQueryResult Data Model

A generic list.

Properties
name data type description
totalResults number The total number of matched results. Some are possibly not shown due to pagination.
items array of ApiEvent

Example

{
  "totalResults" : 12345,
  "items" : [ {
    "id" : "...",
    "content" : "...",
    "timeOccurred" : "...",
    "timeReceived" : "...",
    "category" : "ACTIVITY_EVENT",
    "severity" : "UNKNOWN",
    "alert" : true,
    "attributes" : [ {
      "name" : "...",
      "values" : [ "...", "..." ]
    }, {
      "name" : "...",
      "values" : [ "...", "..." ]
    } ]
  }, {
    "id" : "...",
    "content" : "...",
    "timeOccurred" : "...",
    "timeReceived" : "...",
    "category" : "HEALTH_EVENT",
    "severity" : "INFORMATIONAL",
    "alert" : true,
    "attributes" : [ {
      "name" : "...",
      "values" : [ "...", "..." ]
    }, {
      "name" : "...",
      "values" : [ "...", "..." ]
    } ]
  } ]
}