-
Notifications
You must be signed in to change notification settings - Fork 0
Home
James E Studer edited this page Nov 10, 2018
·
1 revision
Add the following lines of code.
private ScribeApiLibrary api = new ScribeApiLibrary
{
UserName = //Insert Scribe User Name,
Password = //Insert Scribe Password,
BaseUrl = GeneralSettings.baseURLSandbox
}
The GeneralSettings.baseURLSandbox is a constants in a constants class. The production URL is GeneralSettings.baseURLProduction.
Check the TDD project for examples on how to use the code.
4.5.2
- Each method starts with the verb that you want to perform (POST, PUT, GET, DELETE). It is then followed by a descriptive name. Example:
-
Get_ListOfAgentsThis is the https://api.scribesoft.com/#!/Agents/Agents_GetAgents endpoint. - There is one method per endpoint in the Scribe documenatation.