Get Processing Options v2

post

/jderest/v2/poservice

Get the values of the processing options for the specified application and version.

Request

Supported Media Types
Header Parameters
Body ()
The input to the processing option service.
Root Schema : ProcessingOptionRequest
Type: object
The input to the processing option service.
Show Source
  • The application name to fetch processing option values for.
  • An identifier for the device making the service call. If not provided, the requesting IP address is used.
  • Specify the environment to use for login. If not specified, the default environment configured for the AIS Server will be used.
  • The HTML (JAS) Server to use for login. If not specified, the default HTML Server configured for the AIS Server will be used.
  • The JD Edwards EnterpriseOne password, which is required if other authentication methods are not being used.
  • Used for logging in with psToken. Primarily used by the HTML Server to establish a session with the AIS Server.
  • The role to use for login. If not specified, the default role configured for the AIS Server will be used.
  • The AIS token, which is required if other authentication methods are not being used.
  • JD Edwards EnterpriseOne username, which is required if other authentication methods are not being used.
  • The version of the application to get processing options for, if not passed the default version ZJDE0001 will be used.
Back to Top

Response

Supported Media Types

200 Response

Successful Execution

400 Response

Bad Request - Invalid JSON Input

403 Response

Authorization Failure

415 Response

Invalid Content-Type Header - Must use application/json

444 Response

Invalid Token
Body ()
Root Schema : ServiceErrorResponse
Type: object
Error Response
Show Source

500 Response

Server Failed to Process Request
Body ()
Root Schema : ServiceErrorResponse
Type: object
Error Response
Show Source
Back to Top

Examples

Example Request

The following shows an example of a processing options request for all the tasks. The token value is from a prior call to the tokenrequest service to establish a session.

{
  "token" : "044zdgq3HTrdXXI547NUmJbkL/6KsjigD838pqtWFjF7AM=MDE5MDA4NzQzMTEwOTA1MDQ4MjgzOTM0MU15RGV2aWNlMTQ4MjE3MDY4OTgxMA==",
  "deviceName" : "MyDevice",
  "ssoEnabled" : false,
  "applicationName" : "P12120U",
  "version" : "ZJDE0001"
}

Example Response

The following example shows the contents of the response body.

{
  "application" : "P12120U",
  "version" : "ZJDE0001",
  "processingOptions" : {
    "cOdometerDisplay_EV01_5" : {
      "type" : 1,
      "value" : "1"
    },
    "cFuelDisplay_EV01_6" : {
      "type" : 1,
      "value" : "1"
    },
    "cHourDisplay_EV01_7" : {
      "type" : 1,
      "value" : "1"
    },
    "cMeter4Display_EV01_27" : {
      "type" : 1,
      "value" : " "
    },
    "cMeter5Display_EV01_28" : {
      "type" : 1,
      "value" : " "
    },
    "cMeter6Display_EV01_29" : {
      "type" : 1,
      "value" : " "
    },
    "szTemplateName_TEMPNAME_26" : {
      "type" : 2,
      "value" : " "
    },
    "cUpdateChildCurrentMeter_EV01_1" : {
      "type" : 1,
      "value" : "1"
    },
    "cUpdateChildOriginalMeter_EV01_2" : {
      "type" : 1,
      "value" : " "
    },
    "cAutoLoadTemplate_YN01_25" : {
      "type" : 1,
      "value" : " "
    },
    "szR12807Version_VERS_3" : {
      "type" : 2,
      "value" : " "
    },
    "mnToleranceLevel_PCT1_4" : {
      "type" : 9,
      "value" : "0"
    }
  },
  "errors" : ""
}
Back to Top