n8n - 💡(How to fix) Fix Pipedrive v2 Node createDeal issue [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
n8n-io/n8n#29518Fetched 2026-04-30 06:44:03
View on GitHub
Comments
1
Participants
2
Timeline
3
Reactions
0
Author
Timeline (top)
closed ×1commented ×1labeled ×1
RAW_BUFFERClick to expand / collapse

The new Pipedrive v2 Node integration has an issue with the createDeal method. You're sending user_id to the Pipedrive API although Pipedrives v1 to v2 migration guide clearly states this field has been renamed to owner_id: https://pipedrive.readme.io/docs/pipedrive-api-v2-migration-guide#old-v1-product-object-example

Code reference: https://github.com/n8n-io/n8n/blob/d9d1e7c44a1bcf074cdbec234b0d8d4ddb8d7d5e/packages/nodes-base/nodes/Pipedrive/v2/actions/deal/create.operation.ts#L190

extent analysis

TL;DR

Update the createDeal method to send owner_id instead of user_id to the Pipedrive API.

Guidance

  • Review the Pipedrive API v2 migration guide to understand the changes in field names.
  • Check the create.operation.ts file at the specified code reference to identify where the user_id is being sent.
  • Update the code to send owner_id instead of user_id in the createDeal method.
  • Verify the change by testing the createDeal method with the updated field name.

Example

// Before
const dealData = { ...otherFields, user_id: userId };

// After
const dealData = { ...otherFields, owner_id: userId };

Notes

This fix assumes that the owner_id field is correctly populated with the intended user ID.

Recommendation

Apply workaround: Update the createDeal method to send owner_id instead of user_id to ensure compatibility with the Pipedrive API v2.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

n8n - 💡(How to fix) Fix Pipedrive v2 Node createDeal issue [1 comments, 2 participants]