Use getPlayerSettings
in the settings
namespace to get volumeMode
, volumeScalingFactor
, monoMode
, and wifiDisable
. See the playerSettings
type for details.
Note: This command is not yet implemented.
Endpoint
GET
1 |
/players/{PLAYERID}/settings/player |
Request Parameters
There are no request parameters in the body, all of the request parameters are in the header.
This command requires a playerId
to determine the target of the command. See Control for details.
Response
Returns a playerSettings
object representing the state of the group.
If not successful, returns a globalError
.
Examples
Response
1 2 3 4 5 6 |
{ "volumeMode": "PASS_THROUGH", "volumeScalingFactor": 0.8, "monoMode": false, "wifiDisable": false } |