post https://api.verkada.com/cameras/v1/cloud_backup/settings
If camera cloud backup has been enabled and disabled before,
enable it again will start backup from last disabled time
Log in to see full request history
Response
200ok
If camera cloud backup has been enabled and disabled before,
enable it again will start backup from last disabled time
200ok
xxxxxxxxxx
const url = 'https://api.verkada.com/cameras/v1/cloud_backup/settings';
const options = {method: 'POST', headers: {'content-type': 'application/json'}};
​
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
Try It!
to start a request and see the response here!