delete_tally_webhook
Remove a specific webhook from a Tally form by providing the form ID and webhook ID, ensuring streamlined webhook management within the Tally MCP Server.
Instructions
Delete a webhook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formId | Yes | The ID of the form | |
webhookId | Yes | The ID of the webhook to delete |
Input Schema (JSON Schema)
{
"properties": {
"formId": {
"description": "The ID of the form",
"type": "string"
},
"webhookId": {
"description": "The ID of the webhook to delete",
"type": "string"
}
},
"required": [
"formId",
"webhookId"
],
"type": "object"
}