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