Use the getVolume
command in the groupVolume
namespace to get the volume and mute state of a group.
Endpoint
GET
1 |
/groups/{groupId}/groupVolume |
Request Parameters
This command requires a groupId
to determine the target of the command. See the Control documentation for details.
Response
Returns a groupVolume
object type with the current volume, mute state, and fixed status of the targeted group.
In the event of a failure, returns a globalError
.
Example
Response
1 2 3 4 5 |
{ "volume": 85, "muted": false, "fixed": false } |