Questions tagged [pipedrive-api]

The API for the Pipeline CRM.

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

62 questions
0
votes
1 answer

Pipedrive: PUT to update filter from vba?

I'm trying to update a filter in Pipedrive CRM; Pipedrive API Ref Using; strURL = strURL & “/filters/{25}?api_token=” & strToken 'https://xx.pipedrive.com/v1/filters/{25}?api_token=xx 'Set filter With CreateObject(“MSXML2.XMLHTTP”) .Open “PUT”,…
Reuben Molloy
  • 100
  • 1
  • 8
0
votes
1 answer

How to loop pagination in Pipedrive to get all deals?

I have more than 5000 deals in Pipedrive and I want to pull all the deals using Pipedrive integration to google sheet. I tried some script and successfully pull some data but the problem is Pipedrive has only 500 max limit in each page. So would…
AJRs
  • 11
  • 2
0
votes
0 answers

Python, pipedrive

My first ever program after hello world, lol. I have managed to cobble the following together, and it works for my current purposes. But its very, very slow indeed. I think that's because the program is looking at every single deal, and checks each…
0
votes
0 answers

using pipedrive node module in angular application

I know this has been asked many times, I'm still struggling to get this done! I'm trying to use Pipedrive client API in my Angular App. Suggested approach on npm site is to use require('pipedrive') but Greatest require doesn't work straightway in…
Sangeeta
  • 388
  • 5
  • 19
0
votes
3 answers

How to get values from JObject

I want to integrate Pipedrive with Dynamics CRM. I am calling webhook whenever deal is updated in Pipedrive. I am getting data in JObject form. I want to extract two fields from that. One is status and other is title.How can I do that? Code to call…
riya dalvi
  • 33
  • 2
  • 10
0
votes
2 answers

Attaching file in pipedrive

https://developers.pipedrive.com/docs/api/v1/#!/Files/post_files Doesn't show request example and I can't send POST request via python. My error is: "No files provided" Maybe someone has an example for this request? My code: import requests with…
Kuizame
  • 158
  • 1
  • 6
0
votes
1 answer

Webhooks won't load

In this webpage : https://webhooks-manager.pipedrive.com/web/#/ I've got an infinite loading, looking at console : OPTIONS #LINK# net::ERR_CONNECTION_REFUSED fetch-browser.js:445 XHR failed loading: GET "#LINK#". fetch-browser.js:445 app:error…
0
votes
1 answer

Pipdrive Create a new deal from Email

We have an existing quotation system which we use to generate our quote in PDF form. How do I configure pipedrive to receive these email as a cc or bcc to enable us to keep track of all the quotes going out with their email body &…
0
votes
2 answers

Pipedrive API PUT and POST requests for Filters endpoint not working

I'm trying to pull Deals from the Pipedrive API for a specific date range. I'm accomplishing this by editing (or creating/deleting) a filter via the API with the date range I want, and then passing in that filter in a subsequent request to pull all…
Tom Geitz
  • 3
  • 3
0
votes
0 answers

pipedrive update deal with put/post request with using php, curl and REST

I'm trying to update a deal in pipedrive CRM using the API. What I'm trying to do is to update the owner of a deal to a new user. But this is not successful. docs Here is my code: $deal_id = 31811; //the id of the add that i want to update $deal =…
Edvard Åkerberg
  • 2,181
  • 1
  • 26
  • 47
0
votes
2 answers

calling the rest api post from mvc

I want to post the RESTful service from the name of the url is "https://api.pipedrive.com/v1/persons?api_token=tS5adsXC6V2nH991" list of complete API is present in "https://developers.pipedrive.com/v1" Following is my code string URL =…
user1075564
  • 21
  • 2
  • 8
0
votes
2 answers

Can't get recursive method to work

I have the following method: def all(response = nil, options = {}, data = []) response ||= get(resource_path, options) parsed_response = JSON.parse(response.body) return bad_response(response) unless response.code == '200' data +=…
Andrey Deineko
  • 51,333
  • 10
  • 112
  • 145
0
votes
1 answer

Delay script loops as it waits for fetch

On the script below I need to add a wait every time fetch runs cause if i send them too fast pipedrive will not update properly. I tried setTimeout but it didnt work... any ideas? var response = [{ id: 118, deal_id: 329, item_price: 53.37, …
Deca
  • 1
  • 2
0
votes
1 answer

Not getting deal id in Pipe drive with push notification api?

Not getting deal id when the stage of deal is changed in Pipe drive with push notification api. I am getting the response echo $result = file_get_contents('https://api.pipedrive.com /v1/pushNotifications?api_token=my-appid'); This is the code I…
vikram
  • 1
  • 2
0
votes
1 answer

JSON result from PipeDrive API does not deserialize

I'll excuse myself in advance for such a long post, fact of the matter is that I have no clue as to where the problem might persist. I'm working on a program that is required to pull deals - with custom fields - related to a selected organization…
Chavez
  • 190
  • 12