tidyCal.getTeam retrieves a team by its numeric TidyCal ID.
automations/get-tidycal-team.automation.ts
403 when the account cannot view the team and 404 when it does not exist.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieves one TidyCal team.
tidyCal.getTeam retrieves a team by its numeric TidyCal ID.
import { automation, onDashboardRun } from "automate.ax"
import { tidyCal } from "automate.ax/tidycal"
export default automation("Get TidyCal team", () => {
onDashboardRun({ title: "Get TidyCal team" })
tidyCal.getTeam({ teamId: 123 })
})
403 when the account cannot view the team and 404 when it does not exist.