Smithery
webhook_subscriptions.create
Creates a webhook subscription for the authenticated project. Only one subscription is allowed per project. The signing secret is returned in subscription responses.
Remote smithery/composio
Other tools also called webhook_subscriptions.create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"version": {
"enum": [
"V1",
"V2",
"V3"
],
"type": "string",
"default": "V3",
"description": "Webhook payload version"
},
"webhook_url": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "HTTPS URL to receive webhook events"
},
"enabled_events": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"description": "Array of event types to subscribe to"
}
}
}