tally.getWorkspace gets one Tally workspace with members, invites, and folders.
Example
automations/tally-get-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.
Gets one Tally workspace with members, invites, and folders.
tally.getWorkspace gets one Tally workspace with members, invites, and folders.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Get workspace", () => {
onHttpRequest({ scope: "automation" })
tally.getWorkspace({
workspaceId: "workspace-id",
})
})
workspaceId is required.
Pass account to select a named Tally connection.