const response = await fetch('/v1/platform-webhooks/{id}/set-active', {
method: 'POST',
headers: {
"Authorization": "Bearer Bearer",
"Content-Type": "application/json"
},
body: JSON.stringify({
"isActive": false
}),
});
const data = await response.json();