View as Markdown
Taiga icon

Taiga ACTION

Update User Story

Update an existing user story 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 User Story 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-userstory",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    taiga: { authProvisionId: "apn_xxxxxxx" },
    projectId: "Project ID",
    userStoryId: "User Story 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 User Story inputs
Property Type Description
projectId Project ID string
Select a project or provide a project ID
Required Dynamic
userStoryId User Story ID string
Select a user story or provide a user story ID
Required Dynamic
subject Subject string
The user story subject/title
Optional
description Description string
The user story description
Optional
status User Story Status string
Select a user story status or provide a user story status
Optional Dynamic
assignedTo Assigned To string
User to assign the user story to
Optional Dynamic
tags Tags string[]
Tags to associate with the user story
Optional
backlogOrder Backlog Order integer
The order in the backlog
Optional
kanbanOrder Kanban Order integer
The order in the kanban
Optional
sprintOrder Sprint Order integer
The order in the sprint
Optional
clientRequirement Client Requirement boolean
Whether the user story is a client requirement
Optional
isBlocked Is Blocked boolean
Whether the user story is blocked
Optional
milestone Milestone string
Milestone to associate the user story with
Optional Dynamic
points Points object
A dictionary of points. The key is the id of the role and the value is the id of the points. Format: {"10469741": 20817870, "10469742": 20817871, "10469743": 20817872, "10469744": 20817873}
Optional
teamRequirement Team Requirement boolean
Whether the user story is a team requirement
Optional
watchers Watchers string[]
Users to watch the user story
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-userstory
Version
0.0.2
App
Taiga
Authentication
OAuth
Read-only
No
Destructive
Yes
Open world
Yes