View as Markdown
Rydoo icon

Rydoo ACTION

Create Project

Sets up a new company project for expense allocation. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Rydoo account once, then configure and run Create Project 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: "rydoo-create-project",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    rydoo: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    isActive: true,
  },
})

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 Project inputs
Property Type Description
name Name string
Name of the project
Required
isActive Is Active boolean
Whether the project is currently active
Optional
refId Reference ID string
External reference identifier for the project
Optional
branch Branch string
Branch assignment for the project as a JSON object (e.g., {"id": "uuid"})
Optional
limitedToGroups Limited To Groups string[]
Restrict project access to specific groups. Each entry must be a JSON object with a group id property (e.g., {"id": "uuid"})
Optional
isDefaultForGroups Default For Groups string[]
Set the project as default for specific groups. Each entry must be a JSON object with a group id property (e.g., {"id": "uuid"})
Optional
customFields Custom Fields string[]
Custom field values for the project. Each entry must be a JSON object with key, value, and optionally valueCode properties
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
rydoo-create-project
Version
0.0.2
App
Rydoo
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes