patch https://{nurevaDeviceIP}/api/v1/room/zone-input-maps
Allows clients to update their current camera switcher mapping configuration. Once zones have been configured, a camera switcher input port can be mapped to a specific zone for camera switching purposes. Includes other settings that can be configured for camera switching behavior such as:
- the default camera input port
- the time required for sound detected in a zone to trigger a camera switch
- the timeout period require when no sound has been detected before switching back to the default camera input port
NOTE: Only supported for HDL410 devices.
Minimum role required: integrator
Example Request Body
{
"cameraSwitcherZoneInputMap": [
{
"zoneId": "40dc92d0-1b49-44c8-ada8-3a0f97b7b185",
"inputPort": "USB1"
},
{
"zoneId": "11666dd5-3213-440f-afbf-3d1691547ef4",
"inputPort": "USB2"
}
],
"cameraSwitcherDefaults": {
"defaultCameraInputPort": "USB1",
"zonesTriggerWaitTime": 1000,
"switchToDefaultWaitTime": 5000
}
}