client-nodejs
client-nodejs copied to clipboard
Pipedrive API client for NodeJS
Hi Pipedrive team! As I understand, this Pipedrive client library has been generated based on the OpenAPI specification since v11. Is it possible for the client generator to also generate...
https://github.com/pipedrive/client-nodejs/blob/2582506cd777515e262c52f2bd1e479b51137bc3/src/api/OrganizationsApi.js#L1352 I think that requiring name at organization update is not making sense
Hi! This adds support for the optional state parameter as described here: https://pipedrive.readme.io/docs/marketplace-oauth-authorization#step-1-requesting-authorization Sorry if it doesn't comply with your styleguide, I just tossed together this change quickly in the...
We will run concurrently two dashboard apps in our production environment (the old one and the remastered one) while we want to be able to authenticate via OAuth on both...
I'm trying to create a product with a price: ```javascript const result = await pipedrive.ProductsController.addAProduct({ body: { name: 'Something', active_flag: false, prices: [ { currency: 'EUR', price: 123.45 } ],...
the official Pipedrive [openapi file](https://developers.pipedrive.com/docs/api/v1/pipedrive-api.yaml) uses mixed `content-type` for different POST or PUT endpoints: - `application/x-www-form-urlencoded`: 46 places - `application/json`: 152 places. On the other hand, Pipedrive also recommends using...
Hi! We encountered an issue with null values in custom fields, while doing Create or Update requests to API through the client. Request body with a null value in a...