SysInfo

This is the information pertaining to the server.

SysInfo Properties

SysInfo

Field Type Inherited from Description
EventPublisherUrl String SysInfo Gets or sets the EventPublisherUrl value
FitScriptEngineUrl String SysInfo Gets or sets the FitScriptEngineUrl value
LicenseServerUrl String SysInfo Gets or sets the LicenseServerUrl value
ReleaseNotes List<ReleaseNote> SysInfo Gets or sets the ReleaseNotes value
ServerId String SysInfo Gets or sets the ServerId value
ServerTime DateTime SysInfo Gets or sets the ServerTime value
Version String SysInfo Gets or sets the Version value

JSON Structure of SysInfo

{
   "EventPublisherUrl"	:	"String",
   "FitScriptEngineUrl"	:	"String",
   "LicenseServerUrl"	:	"String",
   "ReleaseNotes"	:	"List\<[ReleaseNote](/object-model/releasenote)\>",
   "ServerId"	:	"String",
   "ServerTime"	:	"DateTime",
   "Version"	:	"String"
}

Get Sys Date Time

Example in C#

// Returns: DateTime
var dateTime = await client.GetSysDateTime();

Example in CURL



           curl -X GET \
               https://keepapi.feenicshosting.com/api/sysinfo/datetime \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' 
            

Get Sys Info

Example in C#

// Returns: SysInfo
var sysInfo = await client.GetSysInfo();

Example in CURL



           curl -X GET \
               https://keepapi.feenicshosting.com/api/sysinfo \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' 
            

Refresh Async

Example in C#

// Returns: Boolean
var item = await client.RefreshAsync();

Example in CURL



           curl -X POST \
               https://keepapi.feenicshosting.com/token \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/x-www-form-urlencoded' \
               -d 'refresh_token=TOKEN_HERE&grant_type=refresh_token&client_id=consoleApp#38;client_secret=consoleSecret'