Fetch Jargon and Translations v1

post

/jderest/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
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