HEOS CLI Protocol

level Player volume step level 1 to 10(default 5)
Response:
{
"heos": {
"command": " player/ volume_down ",
"result": "success",
"message": "pid='player_id'&step='step_level'"
}
}
Example: heos://player/volume_down?pid=2&step=5
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