AddAlarmAcknowledgementImageAsync

Returns (Task)

Creates a new alarm acknowledgement.

Name Description
eventMessage The event message containing the acknowledgement
acknowledgementKey The acknowledgement key to add the image to
image The image data to attach

Add Alarm Acknowledgement Image Async

Example in C#

// Returns: nothing
await client.AddAlarmAcknowledgementImageAsync(EventMessageData eventMessage, String acknowledgementKey, Byte image);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/events/EVENT.KEY/acknowledgements/ACKNOWLEDGEMENTS.KEY/image \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.AlarmAcknowledgementItem, Feenics.Keep.WebApi.Model",
                       "Key":null,
                       "CloseEvent":false,
                       "Comment":null,
                       "HasImage":false,
                       "CreatedOn":null,
                       "User":null
                   }'