System.App3(App)

#

Nortec Backend Request Builder


Server:
Function:
App:
Format:

App

Function to retrieve all return codes and all the functions the application has access to. 

Query string:
  • App String - Application name
  • Session String - Session string from previous call
Returns:
  • Functions[] String Array - List of functions
    • RetrunCodes[]
      • Id Integer - Return code
        • Name String - Return code name
        • Return Byte
          • = 100 (OK)
          • = 224 (AppDenied) - Illegal application name
          • = 206 (ServerError) - Unhandled server error
          • = 208 (SessionError) - Session string corrupt
          • = 207 (SessionExpired) - Session string expired
        • ReturnTime Integer - Time in milliseconds, the server has used on the request/response
        • Session String - Session to be included in the next request
        • ServerId Byte - Server to be used for the next request

        Json - 86 bytes.
        {
        	"ReturnTime": 0,
        	"ServerId": 1,
        	"Session": "QAmoYZCr3DILmoFp1BOplr49orVwAzR",
        	"Return": 224
        }

        XML - 174 bytes.
        <?xml version="1.0" encoding="UTF-8" ?>
        <Nortec>
        	<ReturnTime>0</ReturnTime>
        	<ServerId>1</ServerId>
        	<Session>QAmoYZCr3DILmoFp1BOplr49orVwAzR</Session>
        	<Return>224</Return>
        </Nortec>