Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 790 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 790 Bytes

IntercomDotnet

Wrapper for Intercom.io API for .NET

This is now targeted towards the Intercom API v2

A lightweight wrapper around the intercom API based on RestSharp.

Install via nuget

Install-Package intercom-dotnet

Usage example

string apikey = "";
string appid = "";
var client = IntercomClient.GetClient(appid, apikey);
var users = client.Users.Get();
var newuser = client.Users.Post(new { email = "test@test.com" });

Supported features