tally.updateFolder renames one folder in a Tally workspace.
Example
automations/tally-update-folder.automation.ts
Inputs
workspaceId, folderId, and a non-empty name 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.
Renames one folder in a Tally workspace.
tally.updateFolder renames one folder in a Tally workspace.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Update folder", () => {
onHttpRequest({ scope: "automation" })
tally.updateFolder({
workspaceId: "workspace-id",
folderId: "folder-id",
name: "Archived surveys",
})
})
workspaceId, folderId, and a non-empty name are required.
Pass account to select a named Tally connection.