webflow.deleteFormSubmission permanently deletes one form submission.
Example
automations/webflow-delete-form-submission.automation.ts
Inputs
Every input accepts a compatible signal. It requires theforms:write OAuth scope.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently deletes one form submission.
webflow.deleteFormSubmission permanently deletes one form submission.
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"
export default automation("Delete form submission", () => {
onDashboardRun({ title: "Delete form submission" })
webflow.deleteFormSubmission({
formSubmissionId: "form-submission-id",
})
})
forms:write OAuth scope.
| Field | Type | Required | Description |
|---|---|---|---|
formSubmissionId | string | Yes | Webflow form-submission ID. |