Create Webhook
Create webhook for app events. Must be verified to activate.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app to create webhook for |
url | string | Required | The webhook URL to send events to |
event_types | array | Required | Array 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"
}'