View as Markdown
Kanbanize icon

Kanbanize ACTION

List Tasks

Get All Tasks. See the docs here
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Kanbanize account once, then configure and run List Tasks from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "kanbanize-list-all-tasks",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    kanbanize: { authProvisionId: "apn_xxxxxxx" },
    boardId: "Board Id",
    subtasks: true,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

List Tasks inputs
Property Type Description
boardId Board Id string

The ID of the board where the tasks are located.

You can see the board ID on the dashboard screen, in the upper right corner of each board.

Required Dynamic
subtasks Subtasks boolean
Set true if you want to get subtask details for each task.
Required
comments Comments boolean
Set true if you want to get comments for each task.
Required
textFormat Text Format string
If the plain text format is used, the HTML tags are stripped from the task description.
Required
section Section string
Get card from a specific board area.
Optional
column Column string

Get only cards from a specific column.

This field has higher priority than the section option.

Optional Dynamic
lane Lane string
Only get cards from that specific lane.
Optional Dynamic
container Archive Container boolean
Set true if you want to get tasks from archive.
Required

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
kanbanize-list-all-tasks
Version
0.0.2
App
Kanbanize
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes