tally.deleteForm moves a Tally form to the trash.
Example
automations/tally-delete-form.automation.ts
Inputs
formId 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.
Moves a Tally form to the trash.
tally.deleteForm moves a Tally form to the trash.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Delete form", () => {
onHttpRequest({ scope: "automation" })
tally.deleteForm({
formId: "form-id",
})
})
formId is required.
Pass account to select a named Tally connection.