Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ 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 `outcome` field to v1 activity schema (`ActivityObjectFragment`) and v2 activity schemas (`ActivityItem`, `ActivityRequestBody`) — documents the Activity Outcome value, enabling partner integrations to read and write Outcomes on Activities via the public API

## [33.6.2] - 2026-09-08
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,10 @@ export interface ActivityCollectionResponseObjectAllOf {
* @type {string}
*/
'public_description'?: string;
/**
* The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API. Set to `null` to clear the Outcome.
* @type {number}
*/
'outcome'?: number | null;
}

5 changes: 5 additions & 0 deletions src/versions/v2/models/activity-item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ export interface ActivityItem {
*/
'priority'?: number;
/**
* The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API.
* @type {number}
*/
'outcome'?: number | null;
/**
* The note of the activity
* @type {string}
*/
Expand Down
5 changes: 5 additions & 0 deletions src/versions/v2/models/add-activity-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ export interface AddActivityRequest {
*/
'priority'?: number;
/**
* The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API. Set to `null` to clear the Outcome.
* @type {number}
*/
'outcome'?: number | null;
/**
* The note of the activity
* @type {string}
*/
Expand Down
Loading