Specifications
Table Of Contents

4.2.10 Get Mute
Command: heos://player/get_mute?pid=player_id
Attribute Description Enumeration
pid Player id returned by 'get_players' or 'get_groups' command N/A
Response:
{
"heos": {
"command": " player/ get_mute ",
"result": "success",
"message": "pid='player_id'&state='on_or_off'"
}
}
Example: heos://player/get_mute?pid=1
4.2.11 Set Mute
Command: heos://player/set_mute?pid=player_id&state=on_or_off
Attribute Description Enumeration
pid Player id returned by 'get_players' or 'get_groups' command N/A
state Player mute state on, off
Response:
{
"heos": {
"command": " player/ set_mute ",
"result": "success",
"message": "pid='player_id'&state='on_or_off'"
}
}
Example: heos://player/set_mute?pid=3&state=off
4.2.12 Toggle Mute
Command: heos://player/toggle_mute?pid=player_id
Attribute Description Enumeration
pid Player id returned by 'get_players' or 'get_groups' command N/A
Response:
{
"heos": {
"command": " player/ toggle_mute ",
"result": "success",
"message": "pid=player_id"
}
}
Example: heos://player/toggle_mute?pid=3