Get Alert

Get Alert

Example: GET /api/alerts/{id}

Request
URI
GET
https://{api_host}/suite-api/api/alerts/{id}
COPY
Path Parameters
string
id
Required

UUID of the alert


Authentication
This operation uses the following authentication methods.
Responses
200

The Alert for the specified identifier

Returns alert of type(s) application/json
"{\n  \"alertId\" : \"31eeaeec-82d5-4037-a59b-efed2e7c8e3a\",\n  \"resourceId\" : \"905a7445-c4ef-46ff-b019-98fb2461918e\",\n  \"alertLevel\" : \"NONE\",\n  \"startTimeUTC\" : 1744473857,\n  \"cancelTimeUTC\" : 0,\n  \"updateTimeUTC\" : 1744483857,\n  \"suspendUntilTimeUTC\" : 0\n}"
string As uuid As uuid
alertId
Optional

The UUID of the Alert

string As uuid As uuid
resourceId
Optional

The UUID of the Resource causing the Alert

string
alertLevel
Optional

The Criticality level

Possible values are : UNKNOWN, NONE, INFORMATION, WARNING, IMMEDIATE, CRITICAL, AUTO,
string
type
Optional

The Alert Type describing the Alert

string
subType
Optional

The Sub-type of the Alert

string
status
Optional

Indicates the current condition of an Alert.
Used to determine if the conditions for the Alert still continue to exist.

Possible values are : NEW, ACTIVE, UPDATED, CANCELED,
integer As int64 As int64
startTimeUTC
Optional

The UTC time when the Alert started

integer As int64 As int64
cancelTimeUTC
Optional

The UTC time when the Alert was cancelled

integer As int64 As int64
updateTimeUTC
Optional

The UTC time when the Alert was updated

integer As int64 As int64
suspendUntilTimeUTC
Optional

The UTC time when the suspended Alert will resume

string
controlState
Optional

The control state of an Alert

Possible values are : OPEN, ASSIGNED, SUSPENDED, SUPPRESSED,
string
statKey
Optional

The stat-key related to the violating alert. The alert may be associated with a stat-key and not have
an associated alertDefinitionId if the alert was generated through an external event.

string
ownerId
Optional

The unique ID for the user account that owns this Alert

string
ownerName
Optional

The user-name of the user account that owns this Alert

string
alertDefinitionId
Optional

The identifier of the Alert Definition that defined this Alert

string
alertDefinitionName
Optional

Localized name of the associated Alert Definition

string
alertImpact
Optional

The impact of the Alert

object
extension
Optional

extension

array of object
links
Optional

Represents a HTTP 'link' element.
It is implicit that all the link tags support http 'GET' method.


404

No Alert with the specified identifier is found

Operation doesn't return any data structure

500

Error occurred while retrieving the Alert with the specified identifier

Operation doesn't return any data structure

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/suite-api/api/alerts/{id}