Validate Webhook Verification

Activate webhook with verification code

Parameters

ParameterTypeRequiredDescription
hook_idnumberRequiredThe webhook to validate
codestringRequiredThe 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"
}'