David Rouyer

Results 24 comments of David Rouyer

Hi, unfortunately I have no plan to support .NET4.5. The targeted version is .NET Standard 2.0 so you need to upgrade to at least .NET 4.6 according to this page...

Hi, you can't search by a specific custom field: https://developers.pipedrive.com/docs/api/v1/Deals#searchDeals. However, I'll add the news `fields` parameter which allows to specify the fields to perform the search from.

Indeed, there is no auto paging on the endpoints. It would be fairly easy to implement by using the informations fetched from the endpoints that are populated in https://github.com/DavidRouyer/pipedrive-dotnet/blob/master/src/Pipedrive.net/Models/Response/PaginationInfo.cs, but...

Are you using the latest version? I've updated my integration tests for the creation/update of the activity and it's working fine 42177094ab7ee77e0a230d0dd01627bf6b0541b1

The correct way to update an entity is to do like that: ```csharp var deal = await client.Deal.Get(dealId); var dealToUpdate = deal.ToUpdate(); //dealToUpdate.StageId = stageId; The fields you want to...

Hi, thank you for your report! You have to call `ToUpdate()` before editing your object, take a look at this working example: ```csharp var person = await client.Person.Get(627); var updatedPerson...

When you want to update a custom field which is a person or an organization, you have to pass the ID when you want to update it. See the example...

Thanks for the info! Unfortunately Pipedrive has a lot of bugs and I can't do much :/

I can implement them and let you tweak the rules!

Take a look at https://github.com/DavidRouyer/EventFlow/commit/4b09843acb94d2d9a82d6716e8a3dbdc093d72d7 The `EventFlow.ruleset` & `stylecop.json` files are the global settings files, they will be linked to every project. You can [customize everything](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/Configuration.md).