const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({filters: {channelIds: ['<string>']}, headers: {}})
};
fetch('https://api.vambe.me/api/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));