We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#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);