Questions tagged [pipedrive-api]

The API for the Pipeline CRM.

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

62 questions
4
votes
2 answers

How to send in Deals using a web form?

I'm trying to add a new Deal with the Pipedrive API. To do so I've followed this tutorial: http://support.pipedrive.com/customer/portal/articles/1271064-how-to-send-in-deals-using-a-web-form But there's something I didn't understand: "Email API…
Mateus Neves
  • 304
  • 5
  • 16
3
votes
2 answers

How to post form data for new person to Pipedrive (API) via REST

Here is the form that does not work:
iamtoc
  • 1,569
  • 4
  • 17
  • 24
2
votes
1 answer

Pipedrive webforms not loading inside react bootstrap modal

I have a pipedrive form that needs to be render inside the react bootstrap modal. But it simply does not load the form. Its totally empty.
umanga shrestha
  • 368
  • 2
  • 8
  • 29
2
votes
2 answers

Pipedrive delete a deal with API

I am trying to delete a deal using through the API. The code I have written is below , but its not working. I am not able to figure out where to add the Method "DELETE" while making the call.I am not getting any error message in output. Please…
Stacy Thompson
  • 688
  • 1
  • 10
  • 26
2
votes
1 answer

How to retrieve the count of total deals from the API PipeDrive

I am using the API PipeDrive official (see https://developers.pipedrive.com/v1). I want to retrieve the count of totals deals of a user, but I didn't find it.
user5520410
2
votes
2 answers

Importing data from pipedrive API in Google sheets. How to copy the data into the sheet in the correct columns and rows

I am trying to import all Pipedrive deals and writing the information I need in Google sheets. What I am already able to do: Access the feed and parse the data to a variable. And print this variable into 1 cell. Of course this isn't workable…
1
vote
0 answers

Passing New formData in Cloud Function using Callable returns empty

I'm not sure what I'm doing wrong. When I run the API calls directly from the front-end, everything works great however it exposes the API KEY, so I'm moving all functions on firebase cloud functions and for some reason the formData return empty…
Outcast
  • 99
  • 3
  • 12
1
vote
0 answers

File upload via Pipedrive API

I need to include the lead_id in the body with the file content. The file uploads well when I use $data = Invoke-RestMethod -Uri $URL -Method 'Post' -ContentType "multipart/form-data; boundary=`"$boundary`"" -Body $BodyLines. Naturally the file is…
1
vote
0 answers

How to use Pipedrive-Form in NextJs & rerender the Form on every fast refresh

Newbie alert! So I am trying to embed a Pipedrive form in a Nextjs component. Which works fine as long as I don't switch to another page. The fast refresh does not serve the form anymore. function AnfrageSection() { const script_form = ( …
Marvin A.
  • 13
  • 3
1
vote
2 answers

Error posting files with RequestBuilder, 403 Forbidden cloudflare

I'm trying to make a request to send an mp3 file via HttpUriRequest multipartRequest, I've added all the headers that the API documentation asks for (Content-Type multipart/form-data). However, a strange thing I noticed was the "Host" header, when I…
lf.melo
  • 29
  • 4
1
vote
1 answer

Pipedrive API GET request setValues of array in Google Sheet not working

I have this array that I'm pulling from Pipedrive using API: [John Smith, [555-867-5309, 444-867-5309], [john@gmail.com, john@yahoo.com]] I want this array to populate to the Google sheet like so: | A | B …
1
vote
1 answer

Pipedrive - Updating a Lead Returns 404 not found

I am trying to update a LEAD using this URL $lead_url = ‘https://’.$company_domain.’.pipedrive.com/api/v1/leads/’ . $leadID . ‘?api_token=’ . $PD_API_KEY; But it returns 404 Not Found. When I check this URL in the browser it returns the complete…
Rana
  • 31
  • 6
1
vote
0 answers

How to get stage-specific important fields from pipedrive API

In pipedrive you can tag fields as important for some pipeline stages. For all the stages in my pipelines I would like to get the list of those important fields via an API request. The closest I found on the API documentation was the GET…
Emilie
  • 11
  • 1
1
vote
0 answers

PipeDrive - how to avoid loops when using WebHooks?

I'm working with PipeDrive API and I've started to use their webhooks. The problem is that it cause loops. Simple example: There is a model Deal which has two methods - Deal.sync(), Deal.backsync() Deal.sync() sends updated or created Deal object…
Milano
  • 18,048
  • 37
  • 153
  • 353
1
vote
1 answer

Pipedrive API pagination

Anyone knows a better way to show the total count of registers from some request? https://api.pipedrive.com/v1/deals?api_token=a098d7d8d...0a0sd9kjzxm&start=0&limit=2&BETTER_SUMMARY=TRUE pagination: { start: 0, limit: 2, …
John Murowaniecki
  • 613
  • 1
  • 5
  • 9
1
2 3 4 5