create_tally_webhook
Set up a webhook for a Tally form by specifying the form ID, webhook URL, and events to subscribe to, enabling automated responses to form submissions.
Instructions
Create a new webhook for a form
Input Schema
Name | Required | Description | Default |
---|---|---|---|
events | Yes | Array of events to subscribe to (e.g., ["form.response"]) | |
formId | Yes | The ID of the form | |
url | Yes | The webhook URL endpoint |
Input Schema (JSON Schema)
{
"properties": {
"events": {
"description": "Array of events to subscribe to (e.g., [\"form.response\"])",
"items": {
"type": "string"
},
"type": "array"
},
"formId": {
"description": "The ID of the form",
"type": "string"
},
"url": {
"description": "The webhook URL endpoint",
"type": "string"
}
},
"required": [
"formId",
"url",
"events"
],
"type": "object"
}