Last updated 9 months ago
Was this helpful?
Returns information for a specific preset
Preset ID
curl -L \ --url 'http://AAA-1234.local/psapi/presets/{presetID}'
{ "beams": { "ANY_ADDITIONAL_PROPERTY": { "beam_type": "coverage-beam", "mute": false, "name": "Beam 1", "solo": false } }, "name": "text" }
Changes the mute state for a specific beam
Beam ID
curl -L \ --request PUT \ --url 'http://AAA-1234.local/psapi/beams/{beamID}/mute' \ --header 'Content-Type: application/json' \ --data '{ "muted": true }'
No body
Changes the solo state for a specific beam
curl -L \ --request PUT \ --url 'http://AAA-1234.local/psapi/beams/{beamID}/solo' \ --header 'Content-Type: application/json' \ --data '{ "soloed": true }'