Skip to main content
DELETE
/
v1
/
zapier
/
hooks
/
unsubscribe
Unsubscribe from Webhook
curl --request DELETE \
  --url https://app-api.walead.ai/api/v1/zapier/hooks/unsubscribe \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "url": "<string>",
  "type": "lead_tagged_interested"
}
'
{
  "message": "Webhook unsubscribed successfully"
}

Overview

Unsubscribe from a webhook to stop receiving notifications for a specific event type. You must provide the same URL and event type used when subscribing.

Important Notes

  • The url and type must match exactly with the subscription
  • After unsubscribing, you will no longer receive notifications for that event type
  • You can resubscribe at any time using the subscribe endpoint

Authorizations

x-api-key
string
header
required

API key for authentication. Generate from your WaLead dashboard.

Body

application/json

Webhook unsubscription details

url
string<uri>
required

Webhook URL to unsubscribe

type
enum<string>
required

Type of event to unsubscribe from

Available options:
lead_tagged_interested,
lead_meeting_booked,
lead_status_matched,
lead_status_discarded,
campaign_completed,
message_received,
linkedin_account_disconnected,
connection_request_accepted,
campaign_without_leads

Response

Webhook unsubscribed successfully

message
string
Example:

"Webhook unsubscribed successfully"