Update An Existing Quality Retention Profile For This Network
PUT {{baseUrl}}/networks/:networkId/camera/qualityRetentionProfiles/:qualityRetentionProfileId
Update an existing quality retention profile for this network. #### Body Parameters Parameter|Type|Description :-------------: |:-------------: |:-------------: name| string| The name of the new profile. Must be unique. motionBasedRetentionEnabled| boolean| Deletes footage older than 3 days in which no motion was detected. Can be either true or false. Defaults to false. restrictedBandwidthModeEnabled| boolean| Disable features that require additional bandwidth such as Motion Recap. Can be either true or false. Defaults to false. audioRecordingEnabled| boolean| Whether or not to record audio. Can be either true or false. Defaults to false. cloudArchiveEnabled| boolean| Create redundant video backup using Cloud Archive. Can be either true or false. Defaults to false. motionDetectorVersion| integer| The version of the motion detector that will be used by the camera. Only applies to Gen 2 cameras. Defaults to v2. scheduleId| string| Schedule for which this camera will record video, or 'null' to always record. maxRetentionDays| integer| The maximum number of days for which the data will be stored, or 'null' to keep data until storage space runs out. If the former, it can be one of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 30, 60, 90] days. videoSettings| object| Video quality and resolution settings for all the camera models.
Request Body
{"name"=>"<string>", "motionBasedRetentionEnabled"=>"<boolean>", "restrictedBandwidthModeEnabled"=>"<boolean>", "audioRecordingEnabled"=>"<boolean>", "cloudArchiveEnabled"=>"<boolean>", "motionDetectorVersion"=>"<integer>", "scheduleId"=>"<string>", "maxRetentionDays"=>"<integer>", "videoSettings"=>{"MV21/MV71"=>{"quality"=>"<string>", "resolution"=>"<string>"}, "MV12/MV22/MV72"=>{"quality"=>"<string>", "resolution"=>"<string>"}, "MV32"=>{"quality"=>"<string>", "resolution"=>"<string>"}, "MV12WE"=>{"quality"=>"<string>", "resolution"=>"<string>"}, "MV22X/MV72X"=>{"quality"=>"<string>", "resolution"=>"<string>"}}}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
X-Cisco-Meraki-API-Key | null | ||
Content-Type | string |
RESPONSES
status: OK
{"id":"1234","networkId":"N_24329156","name":"Sample quality retention profile","restrictedBandwidthModeEnabled":true,"motionBasedRetentionEnabled":false,"audioRecordingEnabled":false,"cloudArchiveEnabled":false,"maxRetentionDays":7,"scheduleId":null,"motionDetectorVersion":2,"videoSettings":{"MV32":{"quality":"Enhanced","resolution":"1080x1080"},"MV21/MV71":{"quality":"High","resolution":"1280x720"},"MV12/MV22/MV72":{"quality":"High","resolution":"1920x1080"},"MV12WE":{"quality":"High","resolution":"1920x1080"}}}