Questions tagged [pipedrive-api]

The API for the Pipeline CRM.

Documentation: https://developers.pipedrive.com/v1

62 questions
1
vote
1 answer

Listing deals with their products

I need to list all the deals and their products using Pipedrive REST API. Anyone know how to do it? Thanks in advance
1
vote
0 answers

Render a JS form before show result page

I want display a JS form from API before display my result page to my customers, I tried to display the form in a modal or a popup but its JS form from API so i dont have control to close it when i click on the submit button and with this way the…
Wako
  • 140
  • 1
  • 15
1
vote
1 answer

Script to import from Pipedrive to google sheets for last 20 days

I have this script for importing from Pipedrive to Google sheets that works great. I would like it to only pull the matches from the last 20 days instead of from a specific date. I would also like to clear the rows each time and ass them in fresh…
1
vote
2 answers

How to uniquely identity a pipedrive account?

We are trying to integrate our platform with Pipedrive. As far as we have researched, in a pipedrive account, there is one admin and he can add multiple users. And the users later can login in their respective accounts. What we are trying to make…
hermit
  • 1,048
  • 1
  • 6
  • 16
1
vote
1 answer

Importing data from Pipedrive API in Google Sheets - custom fields?

I have been reading bits and bobs around the place to try and get into the API stuff for a while now (admittedly almost everything is beyond me), found this post which I was able to link our Pipedrive into Google Sheets with however it seems to…
1
vote
0 answers

how to get deals between two date range in Pipedrive api

I am integrating third party api called Pipedrive . I want to get all deals between the date range. The date range is dynamic i.e. given by user. For eg. if I select date 2017-01-2 to 2017-01-20 then I want all deals between that date range. I also…
Kinjal Shah
  • 577
  • 1
  • 5
  • 15
1
vote
1 answer

Pipedrive api get all deals - deal title must be given

I'm trying to return all deals via the Pipedrive api. Using this code I'm getting an error - Deal title must be given. Is there not a way to return all deals? According to the docs there is. Anyone have experience with this? $.ajax({ type:…
tqrecords
  • 542
  • 1
  • 5
  • 20
1
vote
1 answer

How to use PHP/Curl to post a file to restful api?

I'm trying to post avatar images from my website to pipedrive using PHP/Curl. The docs require a multipart/form-data encoding. I can't seem to get the actual file to post. I've tried several ways to send the file from various how-to's but every time…
flint
  • 345
  • 5
  • 15
1
vote
1 answer

Pipedrive is it possible to send a new user notes deal etc to a specific pipeline?

My pipedrive deals are sorted in different pipeline that I can find easily with this kind of request : api.pipedrive.com/v1/pipelines/ID_PIPELINE?api_token=###### So what I was doing until now is to send data to…
Jay Cee
  • 1,855
  • 5
  • 28
  • 48
1
vote
1 answer

How to get deal BCC email using Pipedrive API?

On Sep 22, 2015 Pipedrive has introduced changes to smar BCC emails, including that each deal now has it's own BCC email. For instance, main universal BCC email can me mycompany@pipedrivemail.com, and specific deal's BCC email -…
Alex M
  • 13
  • 3
1
vote
2 answers

PUT not updating Pipedrive API (Python wrapper)

Here's a brief description of what I'm trying to do: get a field's value multiply that value by a constant update the field with the adjusted value I am using a nice wrapper found here: https://github.com/hiway/pipedrive-api Here is my code: from…
1
vote
1 answer

Grep a JSON field using Shell

I'm looking to cURL a url and then parse the JSON response and fetch a few of the field values using Shell, but I'm having some trouble parsing the JSON. Here is the JSON I get back from the server: { "success": true, "data": [ { …
user2656127
  • 655
  • 3
  • 15
  • 31
0
votes
1 answer

How to upload a pdf file through a POST request using VBA

I'm trying to create a VBA script to upload a .pdf file to Pipedrive, using their API. And although I can create the multipart/form-data required by the API, something goes wrong while encoding any other file other than plain text, when it goes…
0
votes
1 answer

How to retrieve leads from pipedrive, with current stage of the lead?

My task is to fetch leads from Pipedrive with their current stage, as well as the lead creation date and the date of the last stage update. I have a code that retrieves all this data through the API, but for some reason, it doesn't return the…
Vladislav
  • 11
  • 3
0
votes
1 answer

Google Apps Script function that creates new non-existing entities in Pipedrive

Hi please help me with this Google Apps Script function that creates new entities in Pipedrive CRM based on data in a Google Sheet. The function iterates over rows in the Sheet, retrieves data for a company and a person, checks if the company exists…