smartlead_delete_campaign_webhook
Remove a specific webhook from an email marketing campaign to stop receiving automated notifications or data updates for that campaign.
Instructions
Delete a specific webhook from a campaign.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign containing the webhook | |
id | Yes | ID of the webhook to delete |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign containing the webhook",
"type": "string"
},
"id": {
"description": "ID of the webhook to delete",
"type": "integer"
}
},
"required": [
"campaign_id",
"id"
],
"type": "object"
}