View as Markdown
Podio icon

Podio ACTION

Create an Item

Adds a new item to the given app. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Podio account once, then configure and run Create an 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: "podio-create-item",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    podio: { authProvisionId: "apn_xxxxxxx" },
    orgId: "Organization ID",
    spaceId: "Space 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 an Item inputs
Property Type Description
orgId Organization ID string
An ID identifying the organization
Required Dynamic
spaceId Space ID string
An ID identifying the space
Required Dynamic
appId App ID string
An ID identifying the application
Required Dynamic
tags Tags string[]
The tags to put on the item
Optional
reminder Reminder integer
Minutes to remind before the due date
Optional
fileIds File IDs string[]
Temporary files that have been uploaded and should be attached to this item
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
podio-create-item
Version
0.0.5
App
Podio
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes