Skip to content

.Net API for interacting with the PipeDrive API. Fully Async, support for custom fields and API Rate limiting.

License

Notifications You must be signed in to change notification settings

alekseysshubin/PipeDriveApi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PipeDriveApi

NuGet

.Net API for interacting with the PipeDrive API. Fully Async, support for custom fields and API Rate limiting.

Example - Basics

var myKey = "MY_PIPEDRIVE_API_KEY";
var client = new PipeDriveClient(myKey);

var activityService = new ActivityEntityService<Activity>(client);
var emails = await activityService.GetAllByType("email");

var dealsService = new DealEntityService<Deal>(client);
var deals = await dealsService.GetAllAsync();

var personsService = new PersonEntityService<Person>(client);
var persons = await personsService.GetAllAsync();

Example - Custom Fields

var myKey = "MY_PIPEDRIVE_API_KEY";
var client = new PipeDriveClient(myKey);

var orgService = new OrganizationEntityService<MyCustomOrganization>(client);
var orgs = await orgService.GetAsync();

public class MyCustomOrganization : Organization
{
   [CustomField("5d65d158579525f6d46b7d381fad397d74778553")]
   public string FavoriteShoeSize { get; set; }
}

About

.Net API for interacting with the PipeDrive API. Fully Async, support for custom fields and API Rate limiting.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 77.0%
  • PowerShell 23.0%