DELETE /webhooks/:webhookID
const deleteWebhook = async () => {
try {
const response = await fetch(
"https://api.helius.xyz/v0/webhooks/<webhook-id>?api-key=<PASTE YOUR API KEY HERE>",
{
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
},
}
);
const data = await response.json();
console.log({ data });
} catch (e) {
console.error("error", e);
}
};
deleteWebhook();