Web Interfaces

The STRIX server has sets of interfaces to interact with external web servers to implement advanced functionality.

  • The WebAPI is a feature that an external server instructs a STRIX server to perform a particular process.

  • The Webhook is a feature that a STRIX server notifies an external server when it performs a particular process.

sequenceDiagram participant X as External Server participant S as Strix Server alt WebAPI X ->>+ S: Message S -->>- X: Response else WebHook S ->> X: Event Notification end

These Web interfaces of the STRIX server is built on top of web technologies such as https/JSON, and you can easily integrate them to typical Web applications.