Skip to content

Auctria/IntercomDotnet

 
 

Repository files navigation

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

Please feel free to add support for more endpoints. As I have time I will try to implement some more as well. The old endpoints which were previously supported in the v1 edition of this library have been marked obsolete and will throw exceptions. These will be removed ASAP and more features implemented.

About

Wrapper for Intercom.io API for .NET

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%