v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
healthEvents

Health events for specific resources.

Get a list of all the unresolved events in your account that belong to the supplied resource identifiers.

post/v1/healthEvents/resources

Query parameters

limitinteger

Limit the number of health events returned in the response. The number of health events returned may be less than the limit.

tokenstring

Continuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results. token is set to null when no more pages are left.

Request body

Example request

{
  "data": [
    {
      "id": "C03E086C137F38B4",
      "name": "S3 Source, Scheduled View name.",
      "type": "Collector"
    }
  ]
}

Response

List of all the health events for the specified resources.

nextstring

Next continuation token.

Example response

{
  "data": [
    {
      "eventId": "e801dc7d-f483-46e9-bcc9-410f08f96497",
      "eventName": "InstalledCollectorOffline",
      "details": {
        "error": "Access denied to Amazon S3 bucket",
        "description": "S3 collection is not working as expected because of access issues."
      },
      "resourceIdentity": {
        "id": "C03E086C137F38B4",
        "name": "S3 Source, Scheduled View name.",
        "type": "Collector"
      },
      "eventTime": "2018-10-16T09:10:00Z"
    }
  ]
}