Skip to content

Enduro-Pipeline-Services/Enduro.Lacrm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Less Annoying CRM DotNet API Wrapper

The following is a simple wrapper around the official Less Annoying CRM API.

Usage

To use, simply pass in your API Token, User Code, and the Less Annoying CRM Api Endpoint as part of the options, like so:

static async Task Main()
{
    var client = new HttpClient();
    var options = new Options
    {
        ApiToken = "API_TOKEN_HERE",
        UserCode = "USER_CODE_HERE",
        ApiUrl = "https://api.lessannoyingcrm.com"
    };
    var lacrm = new LacrmClient(client, options);
    
    var response = await lacrm.SearchContacts("Search Terms");
    Console.WriteLine($"Found: {response.Result.Count()} matching contacts");
}

About

A simple dotnet wrapper around the Less Annoying CRM API.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages