get https://{nurevaDeviceIP}/api/v1/room/layout
Allows clients to retrieve information about the room layout such as:
- the preferred measurement system for displaying room dimensions
- whether or not the room dimensions are verified
- the room dimensions
- the computed room dimensions
NOTE: Only supported for HDL410 devices.
Minimum role required: general
Example Response Body
{
"uiMeasurementSystem": "IMPERIAL",
"roomDimensionsVerified": false,
"roomDimensions": {
"xMin": -1000,
"xMax": 4000,
"yMin": 0,
"yMax": 10800
},
"computedRoomDimensions": {
"xMin": -8382,
"xMax": 8382,
"yMin": 0,
"yMax": 10660
},
"audioComponents": [],
"computedAudioComponents": []
}