View as Markdown
Taiga icon

Taiga ACTION

Update Task

Update an existing task in a Taiga project. See the documentation
  • Action
  • Writes data
  • Destructive
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Taiga account once, then configure and run Update 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: "taiga-update-task",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    taiga: { authProvisionId: "apn_xxxxxxx" },
    projectId: "Project ID",
    taskId: "Task 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.

Update Task inputs
Property Type Description
projectId Project ID string
Select a project or provide a project ID
Required Dynamic
taskId Task ID string
Select a task or provide a task ID
Required Dynamic
subject Subject string
The task subject/title
Optional
description Description string
The task description
Optional
isBlocked Is Blocked boolean
Whether the task is blocked
Optional
milestone Milestone string
Select a milestone or provide a milestone
Optional Dynamic
status Task Status string
Select a task status or provide a task status
Optional Dynamic
assignedTo Assigned To string
User to assign the task to
Optional Dynamic
userStoryId User Story string
User story to associate the task with
Optional Dynamic
usOrder User Story Order integer
The order in the user story
Optional
taskboardOrder Taskboard Order integer
The order in the taskboard
Optional
tags Tags string[]
Tags to associate with the task
Optional
watchers Watchers string[]
Users to watch the task
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
taiga-update-task
Version
0.0.2
App
Taiga
Authentication
OAuth
Read-only
No
Destructive
Yes
Open world
Yes