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…
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…
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.
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…
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…
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…
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 = (
…
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…
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 …
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…
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…
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…
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,
…