Delete event destination
Removes a webhook destination from a configuration set. Future events for sends through this config set won’t fan out to this URL.
DELETE /api/v1/partner/email/configuration-sets/:id/event-destinations/:dest_idcURL
curl -X DELETE \
https://apis.splashifypro.com/api/v1/partner/email/configuration-sets/cs_.../event-destinations/ed_... \
-H "Authorization: Bearer $SPLASHIFY_API_KEY"What this does NOT do
- Does NOT replay events your endpoint missed while the destination was misconfigured. Manual replay is on the roadmap.
- Does NOT cancel in-flight retries — events that were queued before the delete may still attempt delivery for ~21 minutes (the retry window).
Pause vs delete
If you want to temporarily stop delivery:
curl -X PATCH ... -d '{"enabled": false}'is reversible. Deletion is not — re-creating gives you a fresh
destination_id and the historical webhook-attempts audit trail
no longer matches.