Obtaining exact deal title via the API

What I intend to do is to find the exact name of a deal within all deals I have in Pipedrive. E.g. I want to search for the deal named “ek.pl” and receive only this deal in search results in order to add an activity to this deal only by API from another system. Instead, I see as well all deals containing “ek.pl”, e.g. “wizerunek.pl” or “skrivanek.pl” etc

You can try using filter:
Deal Title is “ek.pl” -
create filter in webapp and use api to call it -
then they have filter ID that will do the job and they can simply update filter -
PUT /filters/{id} -
Next they can use GET https://api.pipedrive.com/v1/deals?filter_id:id

1 Like