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

WorklifeBarometer/PipeDriveApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 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 emails = await client.Activities.GetAllByType("email");
var deals = await client.Deals.GetAllAsync();
var persons = await client.Persons.GetAllAsync();

Example - Custom Fields

var myKey = "MY_PIPEDRIVE_API_KEY";
var client = new PipeDriveClient<Person, MyCustomOrganization,Deal,Product>(myKey);

var orgs = await client.Organizations.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