Last updated 4 months ago
HOLOPLOT
© 2024 HOLOPLOT GmbH. All rights reserved.
Returns information about all controllers
OK
Returns information for a specific controller
Controller ID
"XYZ-4321"
const response = await fetch('http://AAA-1234.local/psapi/controllers', { method: 'GET', headers: {}, }); const data = await response.json();
{ "message": "text" }
const response = await fetch('http://AAA-1234.local/psapi/controllers/{controllerID}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "name": "XYZ-4321" }