Skip to content

Build 187 - version-patch #610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
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]
### Fixed
- Fixed the OAuth scope of "Add a follower to a product" endpoint in API v2

## [25.0.0] - 2025-03-31
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/versions/v2/api/products-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat

// authentication oauth2 required
// oauth required
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["products:full"], configuration)



Expand Down
Loading