GET   custom_events/{id}

Gets custom event by Id.

URL Parameters

NameDescription
id

Custom event Id.

Request example

Response body model example and description

{
  "id": 155,
  "name": "Event name.",
  "description": "Test event.",
  "from_utc": "2015-09-12T11:44:02.546",
  "to_utc": "2015-09-12T11:44:02.546",
  "severity": "I",
  "is_all_check": true,
  "checks": [
    12345,
    678,
    234234
  ]
}
NameType Description
idInteger

The event's numeric identity.

nameString

The event's name.

descriptionString

The event's description.

from_utcDateTime

The event's start timestamp.

to_utcDateTime

The event's end timestamp.

severityString

The event's severity.

is_all_checkBoolean

The event for all checks.

checksArray

The event's checks list.