Add comment

Add a comment to an alarm.

Note: POST calls create new data, and do not affect existing data.

Request
Security:
path Parameters
alarmId
required
string^[1-9]\d*$

The ID of the alarm. Obtain this from GET /alarms.

Example: 62
Request Body schema: application/json
details
required
string

The details provided in the alarm comment.

Responses
200

Successful operation

400

Bad request error

401

Unauthorized error

403

Forbidden error

404

Not found error

500

Internal server error

post/alarms/{alarmId}/comments
Request samples
application/json
{
  • "details": "comment about the alarm"
}
Response samples
application/json
{
  • "data": {
    }
}