Fetch Jargon and Translations v1

post

/jargonservice

Jargon service allows users to get the jargon and language specific names for data dictionary items in EnterpriseOne.

Request

Supported Media Types
Header Parameters
Body ()
The input to a jargon request.
Root Schema : JargonRequest
Type: object
The input to a jargon request.
Show Source
  • If the system code is not specified for each individual item in the request, then this system code is used for all items in the request.
  • 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.
  • requestedDataItems
    The list of items to request jargon for.
  • 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.
Nested Schema : requestedDataItems
Type: array
The list of items to request jargon for.
Show Source
Nested Schema : JargonDataItem
Type: object
An individual data item in the jargon request.
Show Source
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 Requests

Use the jargon service to get jargon and translated values for data dictionary items. Translations returned are based on the user's language preference in EnterpriseOne. The token value is from a prior call to the token request service to establish a session.

curl -i -X POST -H "Content-Type:application/json" http://ais_server_url/jderest/jargonservice -d
{
  "token" : "044JHa5ZJWbI8PeLalEJFL8pU3VEWKJ17kotDHvwf5mFqc=MDE5MDA4OTE4MDAyNzQ2ODg2NDM2NTUxMk15RGV2aWNlMTQ3ODY0MjUyNjYzMw==",
  "deviceName" : "MyDevice",  
  "defaultSystemCode" : "01",
  "requestedDataItems" : [ {
    "szDict" : "AN8"
  }, {
    "szDict" : "MCU",
    "systemCode" : "13"
  }, {
    "szDict" : "PAN8"
  }, {
    "szDict" : "ITM",
    "systemCode" : "55"
  }, {
    "szDict" : "BLT"
  }, {
    "szDict" : "BOOLCHAR"
  }, {
    "szDict" : "BK75"
  }, {
    "szDict" : "B76ASPN"
  }, {
    "szDict" : "BIDA"
  }, {
    "szDict" : "BTDF"
  } ]
}

Example Response

The following example shows the contents of the response body.

{
  "requestedItems" : [ {
    "szDict" : "AN8",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "Address             \nNumber",
    "rowDescription" : "Address Number"
  }, {
    "szDict" : "MCU",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "Business            \nUnit",
    "rowDescription" : "Business Unit"
  }, {
    "szDict" : "PAN8",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "Participant         \nAddress",
    "rowDescription" : "Participant Address"
  }, {
    "szDict" : "ITM",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "Short               \nItem No",
    "rowDescription" : "Item Number (Short)"
  }, {
    "szDict" : "BLT",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "LT                  \nLT",
    "rowDescription" : "Ledger Type"
  }, {
    "szDict" : "BOOLCHAR",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "Boolean             \nCharacter",
    "rowDescription" : "Boolean Character"
  }, {
    "szDict" : "BK75",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "",
    "rowDescription" : "A/P Bank File Upload - 350 Characters"
  }, {
    "szDict" : "B76ASPN",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "Abroad Shipment     \nPlace",
    "rowDescription" : "Abroad Shipment Place"
  }, {
    "szDict" : "BIDA",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "A                   \nE",
    "rowDescription" : "Accessory Expense Type"
  }, {
    "szDict" : "BTDF",
    "systemCode" : " ",
    "language" : "  ",
    "colTitle" : "Accessory           \nExpenses",
    "rowDescription" : "Accessory Expenses"
  } ]
}
Back to Top