Last updated 1 year ago
Please refer to your Cryptosat onboarding instructions for setup
At your disposal is a simple GUI dashboard for monitoring and controlling power supply
Retrieve the current status of all the Crypto Engines.
GET /status HTTP/1.1 Host: 0.0.0.0:8000 Accept: */*
Status retrieved successfully
{ "status": { "ANY_ADDITIONAL_PROPERTY": { "is_on": true, "alias": "text" } } }
Turn on Crypto Engines based on their indices.
Comma separated list of Crypto Engine indices to turn on. Examples: '0', '1,2,4', '3,2'
1,2
Operation was successful
Turn off Crypto Engines based on their indices.
Comma separated list of Crypto Engine indices to turn off. Examples: '0', '1,2,4', '3,2'
GET /turn_on HTTP/1.1 Host: 0.0.0.0:8000 Accept: */*
{ "message": "text" }
GET /turn_off HTTP/1.1 Host: 0.0.0.0:8000 Accept: */*