tally.getForm gets one Tally form with its settings and complete block structure.
Example
automations/tally-get-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.
Gets one Tally form with its settings and complete block structure.
tally.getForm gets one Tally form with its settings and complete block structure.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Get form", () => {
onHttpRequest({ scope: "automation" })
tally.getForm({
formId: "form-id",
})
})
formId is required.
Pass account to select a named Tally connection.