IntercomDotnet
IntercomDotnet copied to clipboard
Wrapper for Intercom.io API for .NET
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 = "[email protected]" });