tally.listFormQuestions lists every question in a Tally form and whether it has responses.
Example
automations/tally-list-form-questions.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.
Lists every question in a Tally form and whether it has responses.
tally.listFormQuestions lists every question in a Tally form and whether it has responses.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("List form questions", () => {
onHttpRequest({ scope: "automation" })
tally.listFormQuestions({
formId: "form-id",
})
})
formId is required.
Pass account to select a named Tally connection.