View as Markdown
FullEnrich icon

FullEnrich ACTION

Enrich Contact

Starts the enrichment process for a specified contact. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's FullEnrich account once, then configure and run Enrich Contact 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: "fullenrich-enrich-contact",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fullenrich: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    webhookUrl: "Webhook URL",
  },
})

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.

Enrich Contact inputs
Property Type Description
name Name string
The name of the action.
Required
webhookUrl Webhook URL string
The Webhook URL that will be triggered when the enrichment is done.
Optional
firstname First Name string
The first name of the contact to enrich.
Required
lastname Last Name string
The last name of the contact to enrich.
Required
domain Domain string
The domain of the contact's company (e.g., example.com). Optional if Company Name is provided.
Optional
companyName Company Name string
The name of the contact's company. Optional if a Domain is provided.
Optional
linkedinUrl LinkedIn URL string
The LinkedIn URL of the contact to increase the probability of finding emails and phones.
Optional
enrichFields Enrich Fields string[]
The fields to enrich. By default, the action enriches contact emails and phones.
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
fullenrich-enrich-contact
Version
0.0.4
App
FullEnrich
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes