patch https://api.verkada.com/cameras/v1/people/person_of_interest
Updates a label of Person of Interest for an organization using a specified person ID.
Log in to see full request history
Response
Updates a label of Person of Interest for an organization using a specified person ID.
xxxxxxxxxx
10const url = 'https://api.verkada.com/cameras/v1/people/person_of_interest';
const options = {
method: 'PATCH',
headers: {accept: 'application/json', '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! Or choose an example: