View as Markdown
noCRM.io icon

noCRM.io ACTION

Create Lead

Creates a new lead. See docs here
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's noCRM.io account once, then configure and run Create Lead 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: "nocrm_io-create-lead",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    nocrm_io: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    description: "Description",
  },
})

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 Lead inputs
Property Type Description
title Title string
Lead's title. Usually it corresponds to the company name.
Required
description Description string
Lead's description. Usually it contains the information of the contact in the company.
Required
userId User ID string
User's ID to assign the lead to the user.
Optional Dynamic
tags Tags string[]
An array of tags describing the lead.
Optional
stepId Step ID string
Step's id for the lead.
Optional 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
nocrm_io-create-lead
Version
0.0.2
App
noCRM.io
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes