Create Webhook

Create webhook for app events. Must be verified to activate.

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredThe app to create webhook for
urlstringRequiredThe webhook URL to send events to
event_typesarrayRequiredArray of event types to listen for (e.g., ["record.create", "record.update", "record.delete"])

Examples

MCP Tool Call

{
  "name": "tape_createWebhook",
  "arguments": {
    "app_id": 12345,
    "url": "example",
    "event_types": "example"
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/createWebhook \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "app_id": 12345,
  "url": "example",
  "event_types": "example"
}'