Delete Webhook
Delete a webhook permanently
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
hook_id | number | Required | The webhook to delete |
Examples
MCP Tool Call
{
"name": "tape_deleteWebhook",
"arguments": {
"hook_id": 12345
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/deleteWebhook \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"hook_id": 12345
}'