View as Markdown
Zoho Sprints icon

Zoho Sprints ACTION

Create Item

Creates a new task, story, or bug in an existing Zoho Sprints project. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Zoho Sprints account once, then configure and run Create Item 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: "zoho_sprints-create-item",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoho_sprints: { authProvisionId: "apn_xxxxxxx" },
    teamId: "Team",
    projectId: "Project",
  },
})

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 Item inputs
Property Type Description
teamId Team string
Identifier of a team
Required Dynamic
projectId Project string
Identifier of a project
Required Dynamic
sprintId Sprint string
Identifier of a sprint
Required Dynamic
name Name string
Name of the item
Required
itemTypeId Item Type string
Identifier of an item type
Required Dynamic
priorityTypeId Priority Type string
Identifier of a priority type
Required Dynamic
epicId Epic string
Identifier of an epic
Optional Dynamic
assignees Assignees string[]
User IDs of the users who will work on the item
Optional Dynamic
description Description string
Description of the item
Optional
startDate Start Date string
Start date of the item. yyyy-MM-dd'T'HH:mm:ssZ (ISO format) Example : 2017-10-13T00:00:00+05:30
Optional
endDate End Date string
End date of the item. yyyy-MM-dd'T'HH:mm:ssZ (ISO format) Example : 2017-10-13T00:00:00+05:30
Optional
duration Duration string
Duration of the item. Available format: ".5" = 30mins, "2:50" = 2hrs 50mins, "3.5" = 3hrs 30mins, "2d 4h 8m" = 2days 4hrs and 8mins
Optional
points Points integer
Estimation points set for the item. Index of the estimation points. Example: The index of 2 in a Fibonacci estimation type is 2 and the index of 8 will be 5.
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
zoho_sprints-create-item
Version
0.0.2
App
Zoho Sprints
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes