Pipedrive logo

Create Person (Pipedrive)

PipedriveCreate Person (Pipedrive)

POST/v1/pipedrive-create-person
texau__pipedrive-create-personcrm
cURL · api.texau.app
84ms
POST/v1/pipedrive-create-person
{
  "unique_name": "Jane Doe",
  "org_id": "sample-value",
  "email": "[email protected]",
  "email_primary": "[email protected]",
  "email_label": "[email protected]",
  "mobile_number": "sample-value",
  "mobile_number_primary": true,
  "mobile_number_label": "sample-value",
  "visible_to": "sample-value",
  "label_id": "sample-value"
}
200 Accepted
{
  "ok": true,
  "data": {
    "id": "rec_4f3a91",
    "unique_name": "sample",
    "first_name": "sample",
    "last_name": "sample",
    "owner_id": "rec_4f3a91",
    "org_id": "rec_4f3a91",
    "add_time": "sample",
    "update_time": "sample",
    "visible_to": 1,
    "label_id": "rec_4f3a91",
    "is_deleted": true,
    "primary_email": "[email protected]",
    "primary_mobile_number": "sample"
  }
}

Creates a new person record in Pipedrive with name, email, phone, labels, and organization association.

Install

Add create person (pipedrive) to your MCP client.

Drop this into claude_desktop_config.json (or your client's equivalent) and the tool shows up in any chat.

claude_desktop_config.json
{
  "mcpServers": {
    "texau": {
      "command": "npx",
      "args": ["-y", "@texau/mcp-server"],
      "env": { "TEXAU_API_KEY": "..." }
    }
  }
}

Tool name: texau__pipedrive-create-person

When to use this.

The "Create Person (Pipedrive)" action enables users to efficiently create a new person record within the Pipedrive CRM system. This action allows for the input of essential details such as the person's full name, email address, phone number, and optional organization association through the org_id parameter. Users can also specify whether the email and phone are primary contacts, assign visibility settings, and categorize the person with labels. The output includes critical data fields such as the unique person ID, first and last names, organization ID, and timestamps for record creation and updates. This action is particularly useful for sales teams and customer relationship managers looking to streamline contact management and enhance their CRM database, making it an essential tool in the CRM category.

Try it

Run a sample request.

The response is a deterministic, cached example. No live call, no credits used.

Create Person (Pipedrive)

Try it

Full name of the person

Select the organization this person will belong to.

Email Address of the person

Set to true if this is the primary email address.

Label for the email address.

Phone number of the person

Response is cached — no live API call.

Response

Output schema.

Every field returned in `data`. Click rows to expand nested objects.

FieldType
  • id
    Id
    number
  • unique_name
    Unique Name
    text
  • first_name
    First Name
    text
  • last_name
    Last Name
    text
  • owner_id
    Owner Id
    nullablenumber
  • org_id
    Org Id
    number
  • add_time
    Add Time
    nullabletext
  • update_time
    Update Time
    nullabletext
  • visible_to
    Visible To
    nullablenumber
  • label_id
    Label Id
    nullablearray
  • is_deleted
    Is Deleted
    nullableboolean
  • primary_email
    Primary Email
    text
  • primary_mobile_number
    Primary Mobile Number
    text

Integrate

Copy-pasteable snippets.

Real endpoint: https://v3-api.texau.com/api/v1/pipedrive-create-person. Auth: x-api-key.

cURL · api.texau.app
84ms
POST/v1/pipedrive-create-person
curl -X POST 'https://v3-api.texau.com/api/v1/pipedrive-create-person' \
  -H 'x-api-key: $TEXAU_API_KEY' \
  -H 'content-type: application/json' \
  -d '{"unique_name":"Jane Doe","org_id":"sample-value","email":"[email protected]","email_primary":"[email protected]","email_label":"[email protected]","mobile_number":"sample-value","mobile_number_primary":true,"mobile_number_label":"sample-value","visible_to":"sample-value","label_id":"sample-value"}'
200 Accepted
{
  "ok": true,
  "data": {
    "id": "rec_4f3a91",
    "unique_name": "sample",
    "first_name": "sample",
    "last_name": "sample",
    "owner_id": "rec_4f3a91",
    "org_id": "rec_4f3a91",
    "add_time": "sample",
    "update_time": "sample",
    "visible_to": 1,
    "label_id": "rec_4f3a91",
    "is_deleted": true,
    "primary_email": "[email protected]",
    "primary_mobile_number": "sample"
  }
}

Output

Results land in a TexAu table.

Sample rows below.

Real result preview coming soon.

InputStatusScore
[email protected]valid96
[email protected]risky54
[email protected]invalid12

Workflow

A real example.

Trigger → create person (pipedrive) → enrich → push to your CRM. ~80 ms operator effort, the rest runs in the background.

Step 1TriggerNew row, webhook, or schedule.
Step 2Create Person (Pipedrive)Pipedrive action runs.
Step 3EnrichWaterfall fills missing fields.
Step 4Push to CRMHubSpot / Salesforce / Pipedrive.

Built for

Who runs this.

GTM EngineerRevOpsAgency

Reliability

Rate limits & reliability.

  • Per-minute limitNo public cap
  • Per-day limitPlan-defined
  • RetriesAutomatic w/ backoff
  • ModeSync

Errors

HTTP status codes.

What each response means and what to do about it.

CodeCauseFix
200 OKAction ran. Data in `data`.Read response.
400 Bad RequestMissing or malformed input.Validate against the input schema.
401 UnauthorizedMissing or invalid `x-api-key`.Re-issue from /api-platform.
403 ForbiddenWorkspace lacks plan tier.Upgrade or contact sales.
404 Not FoundAction key not recognized.Verify the slug.
429 Rate LimitedPer-minute or per-day cap hit.Backoff; reduce concurrency.
500 Server ErrorUnexpected TexAu issue.Retry with backoff.
502 Bad GatewayUpstream provider 5xx.Retry; we surface root cause.
504 TimeoutUpstream slower than maxLatency.Switch to `isAsync` polling.

Pricing

What it costs to run.

Light tier

Pricing tier on /pricing. Per-action credit cost is private.

FAQ.

  • Is this real-time?

    Yes. Synchronous actions return in ~1–4 s. Long-running work uses async polling (see status 504 → switch to async).

  • Do I get charged on failure?

    No. Verified failures cost zero credits. Provider miss / 5xx / timeout cascade to the next provider in the waterfall when applicable.

  • Does it work with Claude / Cursor via MCP?

    Yes. Add the texau MCP server to your client config, then call `texau__pipedrive-...` directly.

  • What CRMs can I push results to?

    HubSpot, Salesforce, Pipedrive, Zoho, and GoHighLevel are bidirectional. Smartlead, Instantly, Lemlist, HeyReach, Apollo Sequences, and Reply.io for outbound.

Run Create Person (Pipedrive) in 60 seconds.

Pull your API key, paste the cURL, ship to your CRM.