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