Skip to content

Commit 089ba33

Browse files
author
pipedrive-bot
committed
Build 313 - version-minor
1 parent 19ca025 commit 089ba33

5 files changed

Lines changed: 36 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
77
For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19).
88

99
## [Unreleased]
10+
### Added
11+
- Added `source_deal_id` field to Lead schema to track the deal ID when a lead is converted from a deal
12+
- Added `source_lead_id` field to v2 Deal schema to track the lead ID when a deal is converted from a lead
1013

1114
## [31.4.0] - 2026-02-16
1215
### Fixed

src/versions/v1/models/lead.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ export interface Lead {
8484
*/
8585
'channel_id': string | null;
8686
/**
87+
* The ID of the deal if the lead was converted from a deal.
88+
* @type {number}
89+
*/
90+
'source_deal_id': number | null;
91+
/**
8792
* A flag indicating whether the lead is archived or not
8893
* @type {boolean}
8994
*/

0 commit comments

Comments
 (0)