View as Markdown
KanbanFlow icon

KanbanFlow ACTION

Create Task

Create a task (docs available on board settings)
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's KanbanFlow account once, then configure and run Create Task 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: "kanbanflow-create-task",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    kanbanflow: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    columnId: "Column",
  },
})

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.

Create Task inputs
Property Type Description
name Name string
Task name.
Required
columnId Column string
Select a Column from the list.
Alternatively, you can provide a custom Column ID.
Required Dynamic
swimlaneId Swimlane string
Select a Swimlane from the list.
Alternatively, you can provide a custom Swimlane ID.
Optional Dynamic
color Color string
Select a Color from the list.
Valid color values: yellow, white, red, green, blue, purple, orange, cyan, brown, or magenta.
Optional Dynamic
description Description string
Task description.
Optional
responsibleUserId Responsible User string
Select a User from the list.
Alternatively, you can provide a custom User ID.
Optional Dynamic
subtasks Subtasks string[]
One or more subtasks. If a subtask is to be flagged as finished, suffix it with !finished.
Optional
labels Labels string[]
One or more labels. If a label is to be flagged as pinned, suffix it with !pinned.
Optional
collaborators Collaborators string[]
Select one or more Users from the list.
Optional Dynamic
additionalOptions Additional Options string
A JSON-stringified object with any additional parameters to pass in the request body. See the API docs > Create task for more info.
Optional

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
kanbanflow-create-task
Version
0.0.2
App
KanbanFlow
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes