Request Webhook Verification

Send verification code to webhook URL

Parameters

ParameterTypeRequiredDescription
hook_idnumberRequiredThe webhook to verify

Examples

MCP Tool Call

{
  "name": "tape_requestWebhookVerification",
  "arguments": {
    "hook_id": 12345
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/requestWebhookVerification \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "hook_id": 12345
}'