clickUp.getSpace gets one ClickUp Space.
automations/clickup-get-space.automation.ts
Inputs
spaceId. Every action accepts an optional static account binding.
Output
Returns aClickUpSpace.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Gets one ClickUp Space.
clickUp.getSpace gets one ClickUp Space.
import { automation, onDashboardRun } from "automate.ax"
import { clickUp } from "automate.ax/clickup"
export default automation("Get Space", () => {
onDashboardRun({ title: "Get Space" })
clickUp.getSpace({ spaceId: "space-id" })
})
spaceId. Every action accepts an optional static account binding.
ClickUpSpace.