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
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,17 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
8
8
9
9
## [Unreleased]
10
10
11
+
## [32.1.0] - 2026-03-26
12
+
### Added
13
+
- Added `assignee_ids` field to Tasks endpoints:
14
+
-`GET /v1/tasks`
15
+
-`GET /v1/tasks/{id}`
16
+
-`POST /v1/tasks`
17
+
-`PUT /v1/tasks/{id}`
18
+
19
+
### Changed
20
+
- Updated dependencies
21
+
11
22
## [32.0.0] - 2026-03-13
12
23
### Removed
13
24
- 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. Migrate by switching imports from `versions/v1` to `versions/v2` and using the corresponding SDK methods listed below.
@@ -1208,7 +1219,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
1208
1219
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
1209
1220
* Fixed typo in lead example response (`crrency` to `currency`)
Copy file name to clipboardExpand all lines: README.md
+22-22Lines changed: 22 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,23 +31,23 @@ This SDK supports two API versions, each with its own namespace:
31
31
You can retrieve the api_token from your existing Pipedrive account’s settings page. A step-by-step guide is available [here](https://pipedrive.readme.io/docs/how-to-find-the-api-token).
redirectUri: 'redirectUri'// OAuth 2 Redirection endpoint or Callback Uri
83
83
});
84
84
@@ -147,17 +147,17 @@ It is recommended that you store the access token for reuse.
147
147
This code snippet stores the access token in a session for an express application. It uses the [cookie-parser](https://www.npmjs.com/package/cookie-parser) and [cookie-session](https://www.npmjs.com/package/cookie-session) npm packages for storing the access token.
0 commit comments