Skip to main content
DELETE
/
v2
/
notifications
/
webhooks
/
{webhookId}
Delete Webhook
curl --request DELETE \
  --url https://api.tusky.io/v2/notifications/webhooks/{webhookId}
Delete a webhook endpoint. No further events will be sent to this URL.

Path Parameters

webhookId
string
required
The webhook ID to delete.

Response

Returns 204 No Content on success.

Example

curl -X DELETE https://api.tusky.io/v2/notifications/webhooks/wh_abc123 \
  -H "Api-Key: YOUR_API_KEY"