Skip to content
James E Studer edited this page Nov 10, 2018 · 1 revision

Implement Code

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.

Current .NET Version

4.5.2

Methods

  • 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_ListOfAgents This is the https://api.scribesoft.com/#!/Agents/Agents_GetAgents endpoint.
  • There is one method per endpoint in the Scribe documenatation.

Tibco Scribe Links

Clone this wiki locally