C# library for the SaasPro

These libraries are open source and are released as such. If you have located a bug or have questions, please visit the GitHub repositories that are associated with the sample code and provide feedback there.
Latest SDK version 1.0.0
Frameworks supported
  • .NET Core >=1.0
  • .NET Framework >=4.6
  • Mono/Xamarin >=vNext
Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

 Install-Package RestSharp
  Install-Package Newtonsoft.Json
  Install-Package JsonSubTypes
  Install-Package System.ComponentModel.Annotations
  Install-Package CompareNETObjects

Note: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742.

Installation

Generate the DLL using your preferred tool (for example, dotnet build). Then include the DLL (under the bin folder) in the C# project and use the namespaces:

   using avalara.comms.rest.v2.Api;
    using avalara.comms.rest.v2.Client;
    using avalara.comms.rest.v2.Model;    
Getting Started
View Example