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-Package intercom-dotnet
string apikey = "";
string appid = "";
var client = IntercomClient.GetClient(appid, apikey);
var users = client.Users.Get();
var newuser = client.Users.Post(new { email = "[email protected]" });