You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi, I want to search for an organization through a custom field, but it finds me all the organizations that contain 70, I tried to enter ExactMatch both true and false but it doesn't work. Any suggestions?
thank you very much
Dim filtriRicerca As New OrganizationSearchFilters()
filtriRicerca.Parameters.Add("custom_fields", "COD. CLIENTE")
Dim Organizations = Await Pipedrive.Organization.Search("70", filtriRicerca)
The text was updated successfully, but these errors were encountered:
IIRC you can't add parameters in that way. They are generated when you set other fields. If you breakpoint your code before calling the search, you'll see that your parameters didn't add.
Try this. You may need to do your own filtering once you get search results, depending on what you're searching.
var searchQuery = new DealSearchFilters();
searchQuery.OrganizationId = crmOrg.Id;
searchQuery.Fields = DealSearchField.custom_fields;
var searchResults = await _pipedriveClient.Deal.Search("your custom field value", searchQuery);
hi, I want to search for an organization through a custom field, but it finds me all the organizations that contain 70, I tried to enter ExactMatch both true and false but it doesn't work. Any suggestions?
thank you very much
The text was updated successfully, but these errors were encountered: