View as Markdown
Process Street icon

Process Street ACTION

Start Workflow Run

Starts a workflow run. See the docs here
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Process Street account once, then configure and run Start Workflow Run 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: "process_street-start-workflow-run",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    process_street: { authProvisionId: "apn_xxxxxxx" },
    workflowId: "Workflow ID",
    name: "Name",
  },
})

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.

Start Workflow Run inputs
Property Type Description
workflowId Workflow ID string
The ID of the Workflow
Required Dynamic
name Name string
The name of the workflow run
Optional
dueDate Due Date string
The due date in the ISO 8601 format of the workflow run
Optional
shared Shared boolean
Whether the workflow run is shared with other users
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
process_street-start-workflow-run
Version
0.0.2
App
Process Street
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes