Can I add note to an alarm message by MIP SDK API?
I think it may be 3 steps:
1.Get alarm message from Event Server
2.Add note to the alarm message,the note may store in Event Server
3.Search alarm message again, and also I can get the note added in step 2
- Use VideoOS.Platform.Data.Alarm Get (string token, System.Guid id)
- Use void UpdateAlarm (string token, System.Guid id, string text, int state, int priority, System.DateTime time, string assignedTo)
- Use VideoOS.Platform.Proxy.Alarm.AlarmUpdate[] GetAlarmUpdateHistory (string token, System.Guid id)
See AlarmEventViewer sample, it does show 1 and 2. 3 is not used in that sample but might then be manageable from the experience you get working with the first two.
See also VideoOS.Platform.Proxy.Alarm.IAlarmCommandToken Interface Reference