tarr11 / IntercomDotnet

Wrapper for Intercom.io API for .NET
Apache License 2.0
15 stars 14 forks source link

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