Questions tagged [pipedrive-api]

The API for the Pipeline CRM.

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

62 questions
0
votes
1 answer

Pipedrive multiple filters

I am currently working on an integration that involves filtering persons based on multiple fields and multiple values per field, through the API. As far as I know, it is not possible to implement the following type of filter using the API: Custom…
Adrian Istrate
  • 631
  • 1
  • 5
  • 8
0
votes
0 answers

Cannot update Organization field of a Person while doing a PUT request

So I created a person and also created an Organization and i want to send a PUT request to update a few fields of that Person (+ Organization they belong to). So if my payload looks like: { "name": "Lorem Ipsum" } The persons name will be…
lordZ3d
  • 540
  • 6
  • 20
0
votes
0 answers

Using Make for live Tableau Dashboards

I hope you are all well. I am a data analyst for a UK based property investment company. I have been doing research into methods for setting up a live dashboard, linking a live feed of our CRM data to my analytics software Tableau. And so far, Make…
0
votes
0 answers

How can I debug a nestjs application when I cannot reproduce the error locally?

I have a nestjs application which handles some marketing automation tasks. I have set up datadog and sentry and I keep getting errors. When I replay the bodies locally, I get no errors. I'm a bit stuck here. The error I get on sentry is the…
Sébastien
  • 5,263
  • 11
  • 55
  • 116
0
votes
1 answer

Google sheets appscript - Pipedrive post

I am getting the error 'Exception: Request failed for https://api.pipedrive.com returned code 404. Truncated server response: {"status":false,"error":"Unknown method ."} (use muteHttpExceptions option to examine full response)' when attempting a…
BG1983
  • 39
  • 6
0
votes
2 answers

I'm getting no response of GET request with Axios on my Node.js API

I'm trying to develop an API with Node.js using Axios, to get all deals from Pipedrive. I already have the Pipedrive URL to make the requests, which is similar to this one: https://mydomain.pipedrive.com/api/v1/deals?api_token=${API_TOKEN} and I…
0
votes
0 answers

Python script which loops through Dataframe and posts data to Pipedrive hung

I have a script which loops through a dataframe containing 110 rows. For each row, it creates a dictionary of data then I send a POST request via the Pipedrive API. After 57 successful POSTs, the script seems to be hung but hasnt failed. Any idea…
0
votes
1 answer

Pipedrive Webhook PHP endpoint code example

I have setup a webhook from Pipedrive to activate on a deal being updated. I am struggling with the correct way to read the json response in php. I am new to Webhooks so is there another way of reading the response data. This is what I have: …
IMO
  • 307
  • 1
  • 3
  • 12
0
votes
1 answer

Updating Custom Field with API in Razor Pages, C#

In Pipedrive, when you create a custom field it has a unique API Key, 40 characters long. I create a public object with the name set to that API key, assign a value, it updates on Pipedrive. All is well in the world, until I have a weird issue of…
Ryan
  • 65
  • 11
0
votes
2 answers

Exceeding request rate limit and custom function max execution time when fetching data from Pipedrive API

I am trying to export my Pipedrive data to a Google Sheet, in particular to make the link between two of my queries. So I first wrote this script: function GetPipedriveDeals2() { let ss = SpreadsheetApp.getActiveSpreadsheet(); let sheets =…
0
votes
1 answer

How to update a Deal custom field in Pipedrive API?

I have a list of custom fields for a Deals in Pipedrive. (Located here https://your-instance.pipedrive.com/settings/fields?type=DEAL) Each custom field has a custom API Key which looks like this a56aff894af47285d3bbcd67fe06ee5143fb1123 I try to…
Roman
  • 101
  • 2
  • 4
0
votes
1 answer

Adding new person and new deal at the same time

So I've got Zapier, pipedrive and Wordpress and what I'm doing is I've got zapier connected to wordpress through a webhook and I'm then creating a deal when a new entry is submitted through contact form 7. The deal is automatically being created but…
Ashtheslayer
  • 105
  • 1
  • 11
0
votes
1 answer

How to delete and start over for pipedrive account

I was having issues with current data, and wanted to start over the full account. Found out, there is a link which you can hit to start over again. Here is the link to delete everything. https://app.pipedrive.com/settings/start_over
manshu
  • 1,095
  • 2
  • 13
  • 28
0
votes
1 answer

pipedrive-python-lib - how to get deals based on filter

I use pipedrive-python-lib (https://github.com/GearPlug/pipedrive-python) to connect with Pipeline API. Question: I want to get only deals based on filter. Problem: When I get deals data I don't see any info about filters. And when I get specify…
LukaszK
  • 171
  • 10
0
votes
1 answer

OAuth Authorization in pipeDrive callback using express framework

I created an app on sandbox.pipedrive.com in Marketplace Manager and then I created a callback which asked user to install the app which I setup in pipedrive. If user allow to install they get redirected to my callback url in controller, my…