Skip to content
Dan Lively edited this page Jul 14, 2017 · 2 revisions

Installation

Clone this repository to local computer

git clone https://github.com/dlively1/SugarSharp.git

Open in Visual Studio and build. Upon building nuget will download and install all dependencies

Create Connection

To create a connection to your SugarCRM Instance:

string url = "https://instanceurl/rest/v10/";
string username = "username";
string password = "password";

SugarClient Sugar = new SugarClient(url, username, password);
Clone this wiki locally