Pipedrive logo

Create Deal (Pipedrive)

PipedriveCreate Deal (Pipedrive)

POST/v1/pipedrive-create-deal
texau__pipedrive-create-dealcrm
cURL · api.texau.app
84ms
POST/v1/pipedrive-create-deal
{
  "person_id": 1,
  "org_id": 1,
  "title": "sample-value",
  "value": 1,
  "currency": "sample-value",
  "pipeline_id": "sample-value",
  "stage_id": "sample-value",
  "label_id": "sample-value",
  "expected_close_date": "sample-value",
  "channel": "sample-value",
  "channel_id": "sample-value",
  "status": "sample-value",
  "probability": 1,
  "lost_reason": "sample-value",
  "visible_to": "sample-value",
  "is_deleted": true,
  "is_archived": true,
  "archive_time": "sample-value",
  "close_time": "sample-value",
  "won_time": "sample-value",
  "lost_time": "sample-value"
}
200 Accepted
{
  "ok": true,
  "data": {
    "id": "rec_4f3a91",
    "title": "sample",
    "value": 1,
    "currency": "sample",
    "pipeline_id": "rec_4f3a91",
    "stage_id": "rec_4f3a91",
    "person_id": "rec_4f3a91",
    "org_id": "rec_4f3a91",
    "owner_id": "rec_4f3a91",
    "expected_close_date": "sample",
    "creator_user_id": "rec_4f3a91",
    "add_time": "sample",
    "update_time": "sample",
    "status": "valid",
    "probability_out": 1,
    "lost_reason_out": "sample",
    "visible_to_out": 1,
    "close_time_out": "sample",
    "won_time_out": "sample",
    "lost_time_out": "sample",
    "stage_change_time": "sample",
    "local_won_date": "sample",
    "local_lost_date": "sample",
    "local_close_date": "sample",
    "custom_field_out": "sample",
    "label_id_output": "sample",
    "is_deleted": true,
    "origin": "sample",
    "origin_id": "rec_4f3a91",
    "channel_output": 1,
    "channel_id_output": "sample",
    "acv": 1,
    "arr": 1,
    "mrr": 1,
    "is_archived_output": true,
    "archive_time_output": "sample"
  }
}

Create a new deal in Pipedrive with title, value, currency, expected close date, person, organization, pipeline, stage, and visibility options.

Install

Add create deal (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-deal

When to use this.

The "Create Deal (Pipedrive)" action allows users to seamlessly create new deals within the Pipedrive CRM platform, enhancing sales management and tracking. Key input parameters include the deal title, value, currency, expected close date, and associations with persons and organizations, enabling tailored deal creation. Optional parameters such as pipeline ID, stage ID, and visibility options provide further customization. The output includes essential deal information such as deal ID, status, probability, and timestamps for creation and updates, facilitating effective deal monitoring. This action is ideal for sales teams looking to streamline their deal management processes and improve visibility into their sales pipeline, making it a valuable 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 Deal (Pipedrive)

Try it

The ID of the person linked to the deal.

The ID of the organization linked to the deal.

The title of the deal.

The value of the deal.

Currency code for the deal value.

ID of the pipeline where the deal will be created.

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
  • title
    Title
    text
  • value
    Value
    number
  • currency
    Currency
    text
  • pipeline_id
    Pipeline Id
    number
  • stage_id
    Stage Id
    number
  • person_id
    Person Id
    number
  • org_id
    Org Id
    number
  • owner_id
    Owner Id
    nullablenumber
  • expected_close_date
    Expected Close Date
    nullabletext
  • creator_user_id
    Creator User Id
    nullablenumber
  • add_time
    Add Time
    nullabletext
  • update_time
    Update Time
    nullabletext
  • status
    Status
    text
  • probability_out
    Probability Out
    nullablenumber
  • lost_reason_out
    Lost Reason Out
    nullabletext
  • visible_to_out
    Visible To Out
    nullablenumber
  • close_time_out
    Close Time Out
    nullabletext
  • won_time_out
    Won Time Out
    nullabletext
  • lost_time_out
    Lost Time Out
    nullabletext
  • stage_change_time
    Stage Change Time
    nullabletext
  • local_won_date
    Local Won Date
    nullabletext
  • local_lost_date
    Local Lost Date
    nullabletext
  • local_close_date
    Local Close Date
    nullabletext
  • custom_field_out
    Custom Field Out
    nullableobject
  • label_id_output
    Label Id Output
    nullablearray
  • is_deleted
    Is Deleted
    nullableboolean
  • origin
    Origin
    nullabletext
  • origin_id
    Origin Id
    nullablenumber
  • channel_output
    Channel Output
    nullablenumber
  • channel_id_output
    Channel Id Output
    nullabletext
  • acv
    Acv
    nullablenumber
  • arr
    Arr
    nullablenumber
  • mrr
    Mrr
    nullablenumber
  • is_archived_output
    Is Archived Output
    nullableboolean
  • archive_time_output
    Archive Time Output
    nullabletext

Integrate

Copy-pasteable snippets.

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

cURL · api.texau.app
84ms
POST/v1/pipedrive-create-deal
curl -X POST 'https://v3-api.texau.com/api/v1/pipedrive-create-deal' \
  -H 'x-api-key: $TEXAU_API_KEY' \
  -H 'content-type: application/json' \
  -d '{"person_id":1,"org_id":1,"title":"sample-value","value":1,"currency":"sample-value","pipeline_id":"sample-value","stage_id":"sample-value","label_id":"sample-value","expected_close_date":"sample-value","channel":"sample-value","channel_id":"sample-value","status":"sample-value","probability":1,"lost_reason":"sample-value","visible_to":"sample-value","is_deleted":true,"is_archived":true,"archive_time":"sample-value","close_time":"sample-value","won_time":"sample-value","lost_time":"sample-value"}'
200 Accepted
{
  "ok": true,
  "data": {
    "id": "rec_4f3a91",
    "title": "sample",
    "value": 1,
    "currency": "sample",
    "pipeline_id": "rec_4f3a91",
    "stage_id": "rec_4f3a91",
    "person_id": "rec_4f3a91",
    "org_id": "rec_4f3a91",
    "owner_id": "rec_4f3a91",
    "expected_close_date": "sample",
    "creator_user_id": "rec_4f3a91",
    "add_time": "sample",
    "update_time": "sample",
    "status": "valid",
    "probability_out": 1,
    "lost_reason_out": "sample",
    "visible_to_out": 1,
    "close_time_out": "sample",
    "won_time_out": "sample",
    "lost_time_out": "sample",
    "stage_change_time": "sample",
    "local_won_date": "sample",
    "local_lost_date": "sample",
    "local_close_date": "sample",
    "custom_field_out": "sample",
    "label_id_output": "sample",
    "is_deleted": true,
    "origin": "sample",
    "origin_id": "rec_4f3a91",
    "channel_output": 1,
    "channel_id_output": "sample",
    "acv": 1,
    "arr": 1,
    "mrr": 1,
    "is_archived_output": true,
    "archive_time_output": "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 deal (pipedrive) → enrich → push to your CRM. ~80 ms operator effort, the rest runs in the background.

Step 1TriggerNew row, webhook, or schedule.
Step 2Create Deal (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 Deal (Pipedrive) in 60 seconds.

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