View as Markdown
Drip icon

Drip ACTION

Start Someone on a Workflow

If the workflow is not active, the subscriber will not be added to the workflow. See the docs here
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Drip account once, then configure and run Start Someone on a Workflow 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: "drip-start-someone-on-workflow",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    drip: { authProvisionId: "apn_xxxxxxx" },
    email: "Email",
    workflowId: "Workflow 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.

Start Someone on a Workflow inputs
Property Type Description
email Email string
The subscriber's email address.
Required Dynamic
workflowId Workflow Id string
The workflows's id.
Required Dynamic

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
drip-start-someone-on-workflow
Version
0.0.4
App
Drip
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes