Smithery
webhook_subscriptions.update
Updates a webhook subscription. At least one field must be provided.
Remote smithery/composio
Other tools also called webhook_subscriptions.update?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "webhookSubscriptionId",
"description": "Webhook subscription ID"
},
"version": {
"enum": [
"V1",
"V2",
"V3"
],
"type": "string",
"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"
}
}
}