Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
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).

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

## [31.4.0] - 2026-02-16
### Fixed
Expand Down
5 changes: 5 additions & 0 deletions src/versions/v1/models/lead.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ export interface Lead {
*/
'channel_id': string | null;
/**
* The ID of the deal if the lead was converted from a deal.
* @type {number}
*/
'source_deal_id': number | null;
/**
* A flag indicating whether the lead is archived or not
* @type {boolean}
*/
Expand Down
Loading
Loading