Skip to main content

API Endpoints

The Blue Pill system manager provides multiple API endpoints, that can be triggered by simple http requests. This can be useful in advanced scenarios, where external systems should trigger changes on a panel. 

This is an advanced topic, and basic knowledge of HTTP commands and control API's are expected.

Switching Reactor Projects

Reactor allows to switch the current project via an external HTTP POST request.

The endpoint used is: /reactorapi/selectproject

This request allows to use the skaarOS authentication via HTTP Basic Authentication (Use the latest version of system-manager to allow this (v1.0.1-pre1 and higher)) 

Curl example: curl --location --request POST '192.168.0.20/reactorapi/selectproject' \ --header 'Authorization: Basic YWRtaW46c2thYXJob2o=' \ --header 'Content-Type: application/json' \ --data-raw '{"Filename":"MyProject"}'