get https://{nurevaDeviceIP}/api/v1/room/zones
Allows clients to retrieve their current configuration for their Coverage Map zones. This includes properties such as: the zone's position in the Coverage Map, the label and the type. Currently, the only zone type available is "Switching" (used in conjunction with a camera switcher integration).
NOTE: Only supported for HDL410 devices.
Minimum role required: general
Example Response Body
{
"zones": [
{
"types": [
"Switching"
],
"geometry": {
"point1": {
"x": -2700,
"y": 550
},
"point2": {
"x": 7250,
"y": 5250
}
},
"label": "Zone 1",
"id": "40dc92d0-1b49-44c8-ada8-3a0f97b7b185"
},
{
"types": [
"Switching"
],
"geometry": {
"point1": {
"x": -2700,
"y": 5790
},
"point2": {
"x": 7250,
"y": 9450
}
},
"label": "Zone 2",
"id": "11666dd5-3213-440f-afbf-3d1691547ef4"
}
]
}