View as Markdown
Wrike icon

Wrike ACTION

Get Task

Retrieve the full details of one or more Wrike tasks (title, status, importance, dates, responsibles, custom fields) via GET /tasks/{taskIds}. Use this when you already know a task ID and need its complete record. Use Find Tasks to discover task IDs within a folder first. Provide the taskId as returned by Find Tasks. See the documentation
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Wrike account once, then configure and run Get 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: "wrike-get-task",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    wrike: { authProvisionId: "apn_xxxxxxx" },
    taskId: ["Task IDs"],
  },
})

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.

Get Task inputs
Property Type Description
taskId Task IDs string[]
The IDs of the tasks to retrieve, e.g. IEAASDF3KQAAAAAA. Run the Find Tasks action to look up task IDs within a folder. Provide multiple IDs as separate values to fetch several tasks at once. Limit: 1000 tasks per request.
Required

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
wrike-get-task
Version
0.0.2
App
Wrike
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes