Validate Webhook Verification
Activate webhook with verification code
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
hook_id | number | Required | The webhook to validate |
code | string | Required | The verification code received at the webhook URL |
Examples
MCP Tool Call
{
"name": "tape_validateWebhookVerification",
"arguments": {
"hook_id": 12345,
"code": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/validateWebhookVerification \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"hook_id": 12345,
"code": "example"
}'