tally.listFolders lists the complete folder hierarchy in a Tally workspace.
Example
automations/tally-list-folders.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.
Lists the complete folder hierarchy in a Tally workspace.
tally.listFolders lists the complete folder hierarchy in a Tally workspace.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("List folders", () => {
onHttpRequest({ scope: "automation" })
tally.listFolders({
workspaceId: "workspace-id",
})
})
workspaceId is required.
Pass account to select a named Tally connection.