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