Beams and presets
Changes the mute state for a specific beam
Path parameters
beamIDstringRequired
Beam ID
Body
mutedbooleanRequired
Responses
204
No Content
400
Bad request
application/json
500
Internal server error
application/json
put
PUT /psapi/beams/{beamID}/mute HTTP/1.1
Host: aaa-1234.local
Content-Type: application/json
Accept: */*
Content-Length: 14
{
"muted": true
}
No content
Changes the solo state for a specific beam
Path parameters
beamIDstringRequired
Beam ID
Body
soloedbooleanRequired
Responses
204
No Content
400
Bad request
application/json
500
Internal server error
application/json
put
PUT /psapi/beams/{beamID}/solo HTTP/1.1
Host: aaa-1234.local
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"soloed": true
}
No content
Returns information for a specific preset
Path parameters
presetIDstringRequired
Preset ID
Responses
200
OK
application/json
400
Bad request
application/json
404
Preset not found
application/json
500
Internal server error
application/json
get
GET /psapi/presets/{presetID} HTTP/1.1
Host: aaa-1234.local
Accept: */*
{
"beams": {
"ANY_ADDITIONAL_PROPERTY": {
"beam_type": "coverage-beam",
"mute": false,
"name": "Beam 1",
"solo": false
}
},
"name": "text"
}
Last updated
Was this helpful?