You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+77-1Lines changed: 77 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,92 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [Unreleased]
8
8
### Added
9
+
- Added projects v2 API
10
+
- Added project boards v2 API
11
+
- Added project phases v2 API
12
+
- Added project tasks v2 API
13
+
- Added project search v2 API
14
+
- Added project templates v2 API
15
+
- Added project fields v2 API
16
+
- Added `include_option_labels` parameter for v2 GET deal, person and organization endpoints
17
+
- Added `include_labels` parameter to v2 GET deal, person, and organization endpoints
9
18
- Added `source_deal_id` field to Lead schema to track the deal ID when a lead is converted from a deal
10
-
- Added `source_lead_id` field to v2 Deal schema to track the lead ID when a deal is converted from a lead
19
+
- Added `source_lead_id` field to v2 Deal schema to track the lead ID when a lead is converted from a lead
11
20
- Added `include_field_code` query parameter to Filters endpoints:
12
21
-`GET /v1/filters/{id}`
13
22
-`PUT /v1/filters/{id}`
14
23
-`POST /v1/filters`
15
24
- When set to `true`, each condition in the response includes a `field_code` field identifying the field by its code name. The value is `null` if the field code cannot be resolved.
25
+
- Added `assignee_ids` field to Tasks endpoints:
26
+
-`GET /v1/tasks`
27
+
-`GET /v1/tasks/{id}`
28
+
-`POST /v1/tasks`
29
+
-`PUT /v1/tasks/{id}`
30
+
### Removed
31
+
- Removed deprecated v1 endpoints that have v2 equivalents. See the [deprecation announcement](https://developers.pipedrive.com/changelog/post/deprecation-of-selected-api-v1-endpoints) for details. Please migrate to the corresponding v2 endpoints listed below:
- Made `picture_id`, `org_id`, `label`, `last_name`, `cc_email`, `last_incoming_mail_time`, and `last_outgoing_mail_time` nullable in person and organization schemas to match real API behavior
16
90
### Changed
17
91
- Changed `board_id` and `phase_id` to be optional in `POST /api/v1/projects`
@@ -519,6 +519,7 @@ $deal_id = 56; // int | The ID of the deal which notes to fetch. If omitted, not
519
519
$person_id = 56; // int | The ID of the person whose notes to fetch. If omitted, notes about all persons will be returned.
520
520
$org_id = 56; // int | The ID of the organization which notes to fetch. If omitted, notes about all organizations will be returned.
521
521
$project_id = 56; // int | The ID of the project which notes to fetch. If omitted, notes about all projects will be returned.
522
+
$task_id = 56; // int | The ID of the task which notes to fetch. If omitted, notes about all tasks will be returned.
522
523
$start = 0; // int | Pagination start
523
524
$limit = 56; // int | Items shown per page
524
525
$sort = 'sort_example'; // string | The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: `id`, `user_id`, `deal_id`, `person_id`, `org_id`, `content`, `add_time`, `update_time`.
@@ -530,9 +531,10 @@ $pinned_to_deal_flag = new \Pipedrive\versions\v1\Model\\Pipedrive\versions\v1\M
530
531
$pinned_to_organization_flag = new \Pipedrive\versions\v1\Model\\Pipedrive\versions\v1\Model\NumberBoolean(); // \Pipedrive\versions\v1\Model\NumberBoolean | If set, the results are filtered by note to organization pinning state
531
532
$pinned_to_person_flag = new \Pipedrive\versions\v1\Model\\Pipedrive\versions\v1\Model\NumberBoolean(); // \Pipedrive\versions\v1\Model\NumberBoolean | If set, the results are filtered by note to person pinning state
532
533
$pinned_to_project_flag = new \Pipedrive\versions\v1\Model\\Pipedrive\versions\v1\Model\NumberBoolean(); // \Pipedrive\versions\v1\Model\NumberBoolean | If set, the results are filtered by note to project pinning state
534
+
$pinned_to_task_flag = new \Pipedrive\versions\v1\Model\\Pipedrive\versions\v1\Model\NumberBoolean(); // \Pipedrive\versions\v1\Model\NumberBoolean | If set, the results are filtered by note to task pinning state
echo 'Exception when calling NotesApi->getNotes: ', $e->getMessage(), PHP_EOL;
@@ -549,6 +551,7 @@ Name | Type | Description | Notes
549
551
**person_id** | **int**| The ID of the person whose notes to fetch. If omitted, notes about all persons will be returned. | [optional]
550
552
**org_id** | **int**| The ID of the organization which notes to fetch. If omitted, notes about all organizations will be returned. | [optional]
551
553
**project_id** | **int**| The ID of the project which notes to fetch. If omitted, notes about all projects will be returned. | [optional]
554
+
**task_id** | **int**| The ID of the task which notes to fetch. If omitted, notes about all tasks will be returned. | [optional]
552
555
**start** | **int**| Pagination start | [optional][default to 0]
553
556
**limit** | **int**| Items shown per page | [optional]
554
557
**sort** | **string**| The field names and sorting mode separated by a comma (`field_name_1 ASC`, `field_name_2 DESC`). Only first-level field keys are supported (no nested keys). Supported fields: `id`, `user_id`, `deal_id`, `person_id`, `org_id`, `content`, `add_time`, `update_time`. | [optional]
@@ -560,6 +563,7 @@ Name | Type | Description | Notes
560
563
**pinned_to_organization_flag** | [**\Pipedrive\versions\v1\Model\NumberBoolean**](../Model/.md)| If set, the results are filtered by note to organization pinning state | [optional]
561
564
**pinned_to_person_flag** | [**\Pipedrive\versions\v1\Model\NumberBoolean**](../Model/.md)| If set, the results are filtered by note to person pinning state | [optional]
562
565
**pinned_to_project_flag** | [**\Pipedrive\versions\v1\Model\NumberBoolean**](../Model/.md)| If set, the results are filtered by note to project pinning state | [optional]
566
+
**pinned_to_task_flag** | [**\Pipedrive\versions\v1\Model\NumberBoolean**](../Model/.md)| If set, the results are filtered by note to task pinning state | [optional]
0 commit comments