diff --git a/CHANGELOG.md b/CHANGELOG.md index ec17c685..c394e602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/versions/v2/api/products-api.ts b/src/versions/v2/api/products-api.ts index 6077e715..97c2a0ba 100644 --- a/src/versions/v2/api/products-api.ts +++ b/src/versions/v2/api/products-api.ts @@ -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)