Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 2.39 KB

README.md

File metadata and controls

36 lines (26 loc) · 2.39 KB

EazySDK - .NET Client

Welcome to the EazySDK repository. EazySDK is an integration of the Eazy Collect API version 3 built in .NET Standard 2.0. Its core purpose is to provide a framework for developers already working with Eazy Collect to integrate Eazy Customer Manager into their platform. The framework provides functions designed to speed up the integration process between a developers Customer Relationship Manager and Eazy Collect. Getting started is as simple as providing user specific settings, and making your first call to Eazy Customer Manager should take less than a minute.

Dependencies

Integrating EazySDK into your application

The integration process is simple, and involves importing EazySDK into your virtual environment and configuring some settings. The most basic configuration can be seen below.

>> PM> Install-Package EazySDK
 
using EasySDK;
using Microsoft.Extentions.Configuration;

EazySDK.ClientHandler Handler = new ClientHandler();
IConfiguration Settings = Handler.Settings();

Settings.GetSection("currentEnvironment")["Environment"] = "sandbox"; 
Settings.GetSection('sandboxClientDetails')["ApiKey"] = "{api_key}";
Settings.GetSection('sandboxClientDetails')["ClientCode"] = "{client_code}";

EazySDK.Get EazyGet = new EazySDK.Get(Settings);
string Response = EazyGet.Customers();
Console.WriteLine(Response);

Documentation

All functions in EazySDK possess their own documentation, and can be viewed by viewing the <summary> associated with the selected function. The documentation can also be found on GitHub, or in the /docs directory of the package.

Issues

If you find any issues with EazySDK, please raise an issue on GitHub detailing the issue. If this is not possible, alternatively email [email protected] with as much information as you are able to provide.