delete_webhook
Remove a specific non-global webhook by its ID to stop receiving automated notifications from the Multilead platform.
Instructions
Delete a non-global webhook
This removes a specific non-global webhook by its ID.
Args: user_id: User ID account_id: Account ID webhook_id: Webhook ID to delete
Returns: Success confirmation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| webhook_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"user_id": {
"type": "string"
},
"webhook_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"webhook_id"
],
"type": "object"
}