Hi,
As of now when we do GET /stores/{storeId} we can get the list of videorail (including mediaboard) but in here each devices are represented using field name, and details is in it values
example:
"videorail": {
"vr-1I9001-xxxxxxxx-xxxxxxxxx": {
"vrailId": "vr-1I9001-xxxxxxxx-xxxxxxxxx",
"id": "00001"
},
"vr-1I9001-yyyyyyyy-yyyyyyyyy": {
"vrailId": "vr-1I9001-yyyyyyyy-yyyyyyyyy",
"id": "00002"
}
}etc...
It would be nice if it is an array like below:
"videorail": [{
"vrailId": "vr-1I9001-xxxxxxxx-xxxxxxxxx",
"id": "00001"
},
{
"vrailId": "vr-1I9001-yyyyyyyy-yyyyyyyyy",
"id": "00002"
}]Doing this way, devices will be listed like the Transmitters or ESLs:
"highFrequency": {
"transmitters": [{
"serialNumber": "XXXXXXXX"
},
{
"serialNumber": "YYYYYYYY"
}
]
}