MQTT

Welcome to the TilliT MQTT Documentation! This section will detail exactly how you can interact with our TilliT services. You may want to do the following:

  • Recieve asynchronous event and order updates from TilliT

  • Ingest Live Production Counts and statuses into TilliT

  • Trigger a TilliT event from an external source.

Why would you want to connect via MQTT anyway? Well, if you are trying to get live data exactly when it is created, then an API fails to do so because the client would need to endlessly request the endpoint for new data. A webhook could be an alternative to this, but may not be suitable because it requires an incoming request to your network to create a connection, potentially causing conflict with your current IT security practices. MQTT provides a good alternative, as the request to create a connection occurs inside of your network, and a long lived connection allows for asynchronous messaging to prevent polling frequently for updates.

Before developing your solutions, it's important to understand some of the tips and tricks for using the TilliT MQTT Broker.

  1. Filter a Payload Object

Then you're ready to look into some of the advanced features by using MQTT. See these for what else you can do

  1. Raise an Event

  2. Change Order Statuses

Last updated