View as Markdown
Planview Leankit icon

Planview Leankit ACTION

Create Task Card

Create a task card. See the docs here
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Planview Leankit account once, then configure and run Create Task Card 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: "planview_leankit-create-task-card",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    planview_leankit: { authProvisionId: "apn_xxxxxxx" },
    boardId: "Board ID",
    cardId: "Card ID",
  },
})

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 Card inputs
Property Type Description
boardId Board ID string
The ID of the board
Required Dynamic
cardId Card ID string
The ID of the card
Required Dynamic
title Title string
The card title
Required
typeId Type ID string
The ID of the type
Required Dynamic
assignedUserIds User ID string[]
Collection of users.
Optional Dynamic
description Description string
The card description
Optional
size Size integer
The card size
Optional
taskLaneId Lane ID string
The Id of the lane
Optional Dynamic
connectionsParent Parents Connections string[]
The parents connections.
Optional Dynamic
connectionsChild Children Connections string[]
The children connections.
Optional Dynamic
mirrorSourceCardId Mirror Source Card Id string
The card that is the source for mirroring title, description and customId to this card.
Optional Dynamic
priority Priority string
The priority of the card
Optional
customIconId Custom Icon ID string
The custom icon
Optional Dynamic
customId Custom ID string
The card header
Optional
externalLink External Link object
External link object with string label and string url fields
Optional
index Index integer
The position of the card in the lane starting at 0 as the first position
Optional
plannedStart Planned Start string
The card planning start date. String format: YYYY-MM-DD
Optional
plannedFinish Planned Finish string
The card planning finish date. String format: YYYY-MM-DD
Optional
tags Tags string[]
Collection of tags
Optional Dynamic
wipOverrideComment WIP Override Comment string
This should be specified with a laneId update operation that would violate a WIP limit.
Optional
customFields Custom Fields object
Collection of custom fields. Each field has a string fieldId and string value property.
Optional
planningSeriesId Planning Series ID string
Planning series for an account
Optional Dynamic
planningIncrementIds Planning Increment IDs string[]
Collection of planning increment IDs.
Optional Dynamic

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
planview_leankit-create-task-card
Version
0.0.3
App
Planview Leankit
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes