create_webhook
Set up a webhook on the Klaviyo MCP Server by specifying a URL endpoint and events to subscribe to, enabling automated real-time data updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpoint | Yes | URL endpoint for the webhook | |
events | Yes | Events to subscribe to | |
profile_id | No | Profile ID for authentication |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endpoint": {
"description": "URL endpoint for the webhook",
"format": "uri",
"type": "string"
},
"events": {
"description": "Events to subscribe to",
"items": {
"type": "string"
},
"type": "array"
},
"profile_id": {
"description": "Profile ID for authentication",
"type": "string"
}
},
"required": [
"endpoint",
"events"
],
"type": "object"
}