Specifications
Table Of Contents
Command: heos://player/get_quickselects?pid=player_id
Command: heos://player/get_quickselects?pid=player_id&id=<quick select id>
Attribute Description Enumeration
pid Player id returned by 'get_players' or
'get_groups' command
N/A
id Optional Id for which information is
required.
By default information regarding all quick
selects will be returned
1-6
Response:
{
"heos": {
"command": "player/get_quickselects",
"result": "success",
"message": "pid=player_id"
},
"payload": [
{
"id": 1,
"name": "Quick Select 1'"
},
{
"id": 2,
"name": "Quick Select 2'"
},
.
.
.
{
"id": 6,
"name": "Quick Select 6'"
}
]
}
Example: heos://player/get_quickselects?pid=1
Currently supported HEOS products: LEGO AVR, HEOS BAR
4.2.26 Check for Firmware Update
Command: heos://player/check_update?pid=player_id
Attribute Description Enumeration
pid Player id returned by 'get_players' or 'get_groups' command N/A
update Indicates if firmware update is available or not
update_none, update_exist
Response:
{
"heos": {
"command": " player/check_update",
"result": "success",
"message": "pid=player_id"
}
"payload": {
"update" : "update_none/update_exist",
}
}
Example: heos://player/check_update?pid=1