Skip to content

AccessPaysuite/EazyCollectSDK-Dotnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"] = "playpen"; 
Settings.GetSection('playpenClientDetails')["ApiKey"] = "{api_key}";
Settings.GetSection('playpenClientDetails')["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 help@accesspaysuite.com with as much information as you are able to provide.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages