Get Alarm Instance By Id
Retrieves a single alarm instance using its unique identifier
The unique identifier of the alarm instance to retrieve. This ID is generated when an alarm instance is created and is used to uniquely identify it in the system.
Successfully retrieved the requested alarm instance by its ID. Returns detailed information about the alarm instance, including its current state, severity, associated resource details, and state transition history.
{
"_create_user": "string",
"_create_time": 0,
"_last_modified_user": "string",
"_last_modified_time": 0,
"_revision": 0,
"_resource_type": "string",
"_system_owned": false,
"id": "string",
"display_name": "string",
"description": "string",
"site_ids": [
"string"
],
"definition_id": "string",
"feature_name": "string",
"event_type": "string",
"feature_display_name": "string",
"event_type_display_name": "string",
"severity": "HIGH",
"summary": "string",
"recommended_action": "string",
"kb_article": "string",
"event_resource_type": "string",
"event_resource_type_display_name": "string",
"resource_id": "string",
"object_id": "string",
"node_id": "string",
"value": "string",
"state": "OPEN",
"suppress_duration": 0,
"state_transitions": {
"acknowledged": {
"at_time": 0,
"by_user": "string"
},
"suppressed": {
"at_time": 0,
"by_user": "string"
},
"raised": {
"at_time": 0,
"by_user": "string"
},
"resolved": {
"at_time": 0,
"by_user": "string"
}
}
}
The request was invalid. This typically occurs when the provided alarm instance ID is not in the correct format. Verify that the ID is properly formatted and try again.
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
The specified alarm instance ID was not found in the system. This may occur if the ID is incorrect or if the alarm instance has been deleted or archived.
"Error Object"
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
curl -H 'Authorization: <value>' https://{api_host}/ssp/alarms/{id}