PUT alarm/events/{eventId}/acknowledge

Acknowledges an alarm event is occuring. The event will be updated to show it has been acknowledged by the user who submits this request at the specific date and time the request is received.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

Id of the event to acknowledge.

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResponseVM
NameDescriptionTypeAdditional information
ResultCode

FwApiResultCode

None.

ResultMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResultCode": 0,
  "ResultMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<ResponseVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FW.WebApi2.ViewModels">
  <ResultCode>Ok</ResultCode>
  <ResultMessage>sample string 1</ResultMessage>
</ResponseVM>