tally.createWorkspace creates a Tally workspace.
Example
automations/tally-create-workspace.automation.ts
Inputs
A non-empty workspacename 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.
Creates a Tally workspace.
tally.createWorkspace creates a Tally workspace.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Create workspace", () => {
onHttpRequest({ scope: "automation" })
tally.createWorkspace({
name: "Customer research",
})
})
name is required.
Pass account to select a named Tally connection.