in spark/server.js [98:105]
async function deleteWebhooksByUrl(targetUrl) { const webhooks = await listWebhooks(targetUrl); for (webhook of webhooks) { if (webhook.id) { await deleteWebhookById(webhook.id); } } }