Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/helicone/helicone/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint permanently deletes a webhook configuration. The webhook will immediately stop receiving events.

Use Cases

  • Remove outdated webhook configurations
  • Clean up test webhooks
  • Disable integrations
  • Rotate webhook endpoints

Path Parameters

webhookId
string
required
The unique identifier of the webhook to delete. This is the id field returned from the list webhooks endpoint.

Response

Returns a Result object indicating success or failure.
data
null
Null on success
error
string | null
Error message if the request failed, null on success

Example Request

curl --request DELETE \
  --url https://api.helicone.ai/v1/webhooks/550e8400-e29b-41d4-a716-446655440000 \
  --header 'Authorization: Bearer <YOUR_API_KEY>'

Example Response

{
  "data": null,
  "error": null
}

Error Response

{
  "data": null,
  "error": "Webhook not found"
}

Notes

  • Deletion is permanent and cannot be undone
  • The webhook will immediately stop receiving events
  • You can only delete webhooks that belong to your organization
  • Any in-flight webhook requests may still be delivered