GET   custom_events/{id}

Gets custom event by Id.

URL Parameters

NameDescription
id

Custom event Id.

Request example

curl --request GET "https://api-asm1.apica.io/v3/custom_events/553?auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E"

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": "F",
  "is_all_check": true,
  "checks": [
    12345,
    678,
    234234
  ]
}
NameType Description
id Integer

The event's numeric identity.

name String

The event's name.

description String

The event's description.

from_utc DateTime

The event's start timestamp.

to_utc DateTime

The event's end timestamp.

severity String

The event's severity.

is_all_check Boolean

The event for all checks.

checks Array

The event's checks list.