Programatically delete a Helius webhook.
Last updated 5 months ago
Was this helpful?
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();
The webhook ID.
The api key.
DELETE /v0/webhooks/{webhookID} HTTP/1.1 Host: api.helius.xyz Authorization: Basic username:password Accept: */*
No content.
No content