Remove a webhook
DELETE
/v2/webhooks/{id}
const url = 'https://api.surveycoder.io/v2/webhooks/example';const options = {method: 'DELETE', headers: {'x-api-key': '<x-api-key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api.surveycoder.io/v2/webhooks/example \ --header 'x-api-key: <x-api-key>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”Webhook deleted