Last updated 9 months ago
Was this helpful?
Returns information for a specific preset
Preset ID
GET /psapi/presets/{presetID} HTTP/1.1 Host: aaa-1234.local Accept: */*
OK
{ "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
PUT /psapi/beams/{beamID}/mute HTTP/1.1 Host: aaa-1234.local Content-Type: application/json Accept: */* Content-Length: 14 { "muted": true }
No Content
No content
Changes the solo state for a specific beam
PUT /psapi/beams/{beamID}/solo HTTP/1.1 Host: aaa-1234.local Content-Type: application/json Accept: */* Content-Length: 15 { "soloed": true }