Is it possible for Milestone to send out HTTP requests with alarm event data? Or should the SDK be used to reach out to the the servers to listen for events?

There’s no way for Milestone to send HTTP requests out on event out of the box, but what I’ve done in the past is use the SDK to create a service which subscribes to the NewEventsIndication message, then essentially convert the event object to JSON and send it out to a URL like a webhook where it can be processed on the receiving end.

Ok, thanks! We can do both, but was hoping the HTTP request would be possible as it would be a quicker solution.