DELETE /webhooks/{webhook_id}
Delete a webhook and cancel outstanding deliveries.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| DELETE | /v1/webhooks/{webhook_id} |
An HTTP request already in flight may finish. Delivery history remains available for 30 days. Deletion frees one of the account's three slots.
Path parameters
webhook_idstringrequired
curl -X DELETE "https://api.ellipsis.dev/v1/webhooks/{webhook_id}" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.webhooks.delete(
"...",
)
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.webhooks.delete('...');
console.log(result);