I’m integrating with the Ajax Enterprise API which exposes an AWS SQS feed for device events and notifications. The API documentation is here: Ajax Enterprise API Docs. Each SQS message supplies an event code, which is then used to look up the corresponding log message. This is supplied with placeholders, which you then substitute with other data in the SQS message. Example: "M_01_20": "%3$s: open, %1$s in %2$s" -> "MyHub: open, MyDetector in MyRoom" In an ideal world the feed would just su...