tally.listWorkspaces lists workspaces visible to the connected Tally user.
Example
automations/tally-list-workspaces.automation.ts
Inputs
page is optional and starts at 1.
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 workspaces visible to the connected Tally user.
tally.listWorkspaces lists workspaces visible to the connected Tally user.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("List workspaces", () => {
onHttpRequest({ scope: "automation" })
tally.listWorkspaces({
page: 1,
})
})
page is optional and starts at 1.
Pass account to select a named Tally connection.