tally.deleteWorkspace moves a Tally workspace and all its forms to the trash.
Example
automations/tally-delete-workspace.automation.ts
Inputs
workspaceId 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.
Moves a Tally workspace and all its forms to the trash.
tally.deleteWorkspace moves a Tally workspace and all its forms to the trash.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Delete workspace", () => {
onHttpRequest({ scope: "automation" })
tally.deleteWorkspace({
workspaceId: "workspace-id",
})
})
workspaceId is required.
Pass account to select a named Tally connection.