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