Overview
Sub categories for commands is an advanced feature that requires enabling a special feature for the OEM. Please contact support for details on how to enable it.
Sub Category Parameters
Overview
This feature allows to split very large drop-down choice menus into two parters, where the End User can first select from a shorter drop-down which will generate a related drop-down with filtered values.
For example, when selecting a song the End User can be presented with a drop-down of genre and after selecting one, presented with a follow up drop-down with songs only from that genre.
The information can be specified per-device, so each device can support different genres and music lists.
Setup
Two main steps are required for this feature to work:
- Setup a command with two parameters.
- Make sure the device's details field contains the allowed values.
Setup a command
-
Create a new command (e.g. "select music")
-
Add the primary parameter:
-
Required -
True
-
Hidden -
False
-
Field key - e.g.
music_genre
-
Label - e.g.
Genre
-
Field type -
Dynamic list (single select)
-
Path - e.g.
details.music_choices
-
-
Add the secondary parameter:
-
Required -
True
-
Hidden -
True
-
Field key - e.g.
song
-
Label - e.g.
Song
-
Field type -
string
-
Full command configuration:

Set device's details
Use the Update Device API to set the details to contain a key where the options are stored, in the following format:
{
"field_where_options_are_saved": [
{ category_1_data },
{ category_2_data },
{ category_3_data },
...
]
}
{
"label": "What user sees in primary drop-down",
"children": data for secondary
}
{
"key": "Secondary parameter Field Key",
"label": "Secondary parameter label",
"options": array of string values for secondary drop-down
}
Sample data:
{
"music_choices": [
{
"label": "Pop",
"children": {
"key": "song",
"label": "Song",
"options": [
"Wannabe", "2 Become 1", "Spice Up Your Life"
]
}
},
{
"label": "Rock",
"children": {
"key": "song",
"label": "Song",
"options": [
"Creep", "Alive", "No Rain"
]
}
}
]
}
Usage
On the End Customer side, when clicking a command the user will be presented with the option to select one of the Primary options and after selecting one a new drop-down will be auto-generated for the Secondary selection.
The enqueued command will have both send in the command's parameter field.

Will result in the following data of the command:
{
"song": "No Rain",
"genre": "Rock"
}