Skip to main content
DELETE
/
api
/
v1
/
campaigns
/
{campaign_id}
/
webhooks
/
{webhook_id}
curl -X DELETE "https://app.talkover.ai/api/v1/campaigns/campaign-uuid/webhooks/webhook-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "message": "Campaign webhook deleted"
}

Documentation Index

Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt

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

Delete Campaign Webhook

Delete a campaign webhook. Past delivery logs are retained for the standard retention period.

Endpoint

DELETE /api/v1/campaigns/{campaign_id}/webhooks/{webhook_id}

Path Parameters

campaign_id
string
required
Campaign UUID.
webhook_id
string
required
Webhook UUID.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl -X DELETE "https://app.talkover.ai/api/v1/campaigns/campaign-uuid/webhooks/webhook-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "message": "Campaign webhook deleted"
}