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]
### Changed
- Changed `board_id` and `phase_id` to be optional in `POST /api/v1/projects`

## [31.5.0] - 2026-03-04
### Added
Expand Down
10 changes: 0 additions & 10 deletions src/versions/v1/models/project-all-of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,5 @@ export interface ProjectAllOf {
* @type {string}
*/
'title'?: string;
/**
* The ID of the board this project is associated with
* @type {number}
*/
'board_id'?: number;
/**
* The ID of the phase this project is associated with
* @type {number}
*/
'phase_id'?: number;
}

10 changes: 10 additions & 0 deletions src/versions/v1/models/project-all-of1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@
* @interface ProjectAllOf1
*/
export interface ProjectAllOf1 {
/**
* The ID of the board this project is associated with
* @type {number}
*/
'board_id'?: number;
/**
* The ID of the phase this project is associated with
* @type {number}
*/
'phase_id'?: number;
/**
* The description of the project
* @type {string}
Expand Down
10 changes: 0 additions & 10 deletions src/versions/v1/models/required-post-project-parameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,5 @@ export interface RequiredPostProjectParameters {
* @type {string}
*/
'title': string;
/**
* The ID of a project board
* @type {number}
*/
'board_id': number;
/**
* The ID of a phase on a project board
* @type {number}
*/
'phase_id': number;
}