Oracle E-Business Suite · Example Payload

Oracle E Business Suite Createjournal Example

Business ApplicationsE-Business SuiteEnterpriseERPOracle

Oracle E Business Suite Createjournal Example is an example object payload from Oracle E-Business Suite, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "createJournal",
  "method": "POST",
  "path": "/gl/journals",
  "summary": "Create a Journal Entry",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreatejournalRequestExample",
      "example": {
        "ledgerId": "500123",
        "periodName": "example_value",
        "journalName": "example_value",
        "journalCategory": "example_value",
        "journalSource": "example_value",
        "currencyCode": "example_value",
        "description": "A sample description.",
        "effectiveDate": "2026-01-15",
        "lines": [
          {
            "codeCombinatonId": "500123",
            "accountedDr": 42.5,
            "accountedCr": 42.5,
            "enteredDr": 42.5,
            "enteredCr": 42.5,
            "description": "A sample description."
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createjournal201Example",
      "example": {
        "jeHeaderId": "500123",
        "jeBatchId": "500123",
        "ledgerId": "500123",
        "periodName": "example_value",
        "journalName": "example_value",
        "journalCategory": "example_value",
        "journalSource": "example_value",
        "currencyCode": "example_value",
        "status": "U",
        "description": "A sample description.",
        "effectiveDate": "2026-01-15",
        "lines": [
          {
            "jeLineNum": 10,
            "codeCombinatonId": "500123",
            "accountedDr": 42.5,
            "accountedCr": 42.5,
            "enteredDr": 42.5,
            "enteredCr": 42.5,
            "description": "A sample description."
          }
        ],
        "createdBy": 10,
        "creationDate": "2026-01-15T10:30:00Z",
        "lastUpdatedBy": 10,
        "lastUpdateDate": "2026-01-15T10:30:00Z"
      }
    }
  ]
}