tally.deleteWebhook deletes one webhook from its Tally form.
Example
automations/tally-delete-webhook.automation.ts
Inputs
webhookId is required.
Pass account to select a named Tally connection.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deletes one webhook from its Tally form.
tally.deleteWebhook deletes one webhook from its Tally form.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Delete webhook", () => {
onHttpRequest({ scope: "automation" })
tally.deleteWebhook({
webhookId: "webhook-id",
})
})
webhookId is required.
Pass account to select a named Tally connection.