Oracle EBS Financial Services API

APIs for financial management including General Ledger, Accounts Payable, Accounts Receivable, Fixed Assets, and Cash Management. These PL/SQL APIs can be deployed as REST or SOAP services through the Integrated SOA Gateway.

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

financial-services-api.yml Raw ↑
openapi: 3.1.0
info:
  title: Oracle EBS Financial Services API
  description: >-
    RESTful APIs for Oracle E-Business Suite financial management modules
    including General Ledger, Accounts Payable, Accounts Receivable, Fixed
    Assets, and Cash Management. These PL/SQL APIs are deployed as REST
    services through the Integrated SOA Gateway.
  version: 12.2.0
  contact:
    name: Oracle Support
    email: [email protected]
    url: https://support.oracle.com
  license:
    name: Oracle Proprietary
    url: https://www.oracle.com/legal/terms/
  x-logo:
    url: https://www.oracle.com/a/ocom/img/oracle-logo.svg
servers:
- url: https://{instance}.oracle.com/webservices/rest
  description: Oracle EBS ISG REST endpoint
  variables:
    instance:
      default: ebs-host
      description: The Oracle EBS instance hostname
paths:
  /gl/journals:
    get:
      operationId: getJournals
      summary: Retrieve Journal Entries
      description: >-
        Retrieves General Ledger journal entries based on the provided filter
        criteria. Maps to the GL_JE_HEADERS and GL_JE_LINES interface tables.
      tags:
      - General Ledger
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: ledgerId
        in: query
        description: Ledger identifier
        schema:
          type: integer
        example: '500123'
      - name: periodName
        in: query
        description: Accounting period name
        schema:
          type: string
          example: JAN-26
        example: example_value
      - name: journalCategory
        in: query
        description: Journal category name
        schema:
          type: string
        example: example_value
      - name: status
        in: query
        description: Journal status
        schema:
          type: string
          enum:
          - U
          - A
          - P
          description: U=Unposted, A=Approved, P=Posted
        example: U
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: List of journal entries
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/JournalEntry'
                  totalCount:
                    type: integer
                  hasMore:
                    type: boolean
              examples:
                Getjournals200Example:
                  summary: Default getJournals 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - 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:
                      - {}
                      createdBy: 10
                      creationDate: '2026-01-15T10:30:00Z'
                      lastUpdatedBy: 10
                      lastUpdateDate: '2026-01-15T10:30:00Z'
                    totalCount: 10
                    hasMore: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createJournal
      summary: Create a Journal Entry
      description: >-
        Creates a new General Ledger journal entry. Maps to the
        GL_INTERFACE table and GL_JOURNAL_IMPORT concurrent program.
      tags:
      - General Ledger
      security:
      - tokenAuth: []
      - basicAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JournalEntryCreate'
            examples:
              CreatejournalRequestExample:
                summary: Default createJournal request
                x-microcks-default: true
                value:
                  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.
      responses:
        '201':
          description: Journal entry created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JournalEntry'
              examples:
                Createjournal201Example:
                  summary: Default createJournal 201 response
                  x-microcks-default: true
                  value:
                    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'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ap/invoices:
    get:
      operationId: getApInvoices
      summary: Retrieve Ap Invoices
      description: >-
        Retrieves Accounts Payable invoices. Maps to the AP_INVOICES_ALL and
        AP_INVOICE_LINES_ALL tables through the AP_INVOICES_PKG PL/SQL API.
      tags:
      - Accounts Payable
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: invoiceId
        in: query
        description: Invoice identifier
        schema:
          type: integer
        example: '500123'
      - name: invoiceNum
        in: query
        description: Invoice number
        schema:
          type: string
        example: example_value
      - name: vendorId
        in: query
        description: Supplier/vendor identifier
        schema:
          type: integer
        example: '500123'
      - name: invoiceDateFrom
        in: query
        description: Invoice date range start (YYYY-MM-DD)
        schema:
          type: string
          format: date
        example: '2026-01-15'
      - name: invoiceDateTo
        in: query
        description: Invoice date range end (YYYY-MM-DD)
        schema:
          type: string
          format: date
        example: '2026-01-15'
      - name: invoiceStatus
        in: query
        description: Invoice approval status
        schema:
          type: string
          enum:
          - APPROVED
          - NEEDS_REAPPROVAL
          - NEVER_APPROVED
          - CANCELLED
        example: APPROVED
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: List of AP invoices
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/ApInvoice'
                  totalCount:
                    type: integer
                  hasMore:
                    type: boolean
              examples:
                Getapinvoices200Example:
                  summary: Default getApInvoices 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - invoiceId: '500123'
                      invoiceNum: example_value
                      invoiceDate: '2026-01-15'
                      vendorId: '500123'
                      vendorName: example_value
                      vendorSiteId: '500123'
                      invoiceAmount: 42.5
                      invoiceCurrencyCode: example_value
                      paymentCurrencyCode: example_value
                      exchangeRate: 42.5
                      exchangeRateType: example_value
                      exchangeDate: '2026-01-15'
                      termsId: '500123'
                      description: A sample description.
                      invoiceType: STANDARD
                      source: example_value
                      paymentStatusFlag: 'Y'
                      approvalStatus: APPROVED
                      amountPaid: '500123'
                      lines:
                      - {}
                      orgId: '500123'
                      createdBy: 10
                      creationDate: '2026-01-15T10:30:00Z'
                      lastUpdatedBy: 10
                      lastUpdateDate: '2026-01-15T10:30:00Z'
                    totalCount: 10
                    hasMore: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createApInvoice
      summary: Create an Ap Invoice
      description: >-
        Creates a new Accounts Payable invoice. Uses the AP_INVOICES_INTERFACE
        and AP_INVOICE_LINES_INTERFACE tables, then initiates the Payables
        Open Interface Import program.
      tags:
      - Accounts Payable
      security:
      - tokenAuth: []
      - basicAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApInvoiceCreate'
            examples:
              CreateapinvoiceRequestExample:
                summary: Default createApInvoice request
                x-microcks-default: true
                value:
                  invoiceNum: example_value
                  vendorId: '500123'
                  vendorSiteId: '500123'
                  invoiceAmount: 42.5
                  invoiceCurrencyCode: example_value
                  invoiceDate: '2026-01-15'
                  invoiceType: STANDARD
                  description: A sample description.
                  termsId: '500123'
                  source: example_value
                  lines:
                  - lineNumber: 10
                    lineType: example_value
                    amount: 42.5
                    description: A sample description.
                    distCodeCombinationId: '500123'
      responses:
        '201':
          description: Invoice created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApInvoice'
              examples:
                Createapinvoice201Example:
                  summary: Default createApInvoice 201 response
                  x-microcks-default: true
                  value:
                    invoiceId: '500123'
                    invoiceNum: example_value
                    invoiceDate: '2026-01-15'
                    vendorId: '500123'
                    vendorName: example_value
                    vendorSiteId: '500123'
                    invoiceAmount: 42.5
                    invoiceCurrencyCode: example_value
                    paymentCurrencyCode: example_value
                    exchangeRate: 42.5
                    exchangeRateType: example_value
                    exchangeDate: '2026-01-15'
                    termsId: '500123'
                    description: A sample description.
                    invoiceType: STANDARD
                    source: example_value
                    paymentStatusFlag: 'Y'
                    approvalStatus: APPROVED
                    amountPaid: '500123'
                    lines:
                    - lineNumber: 10
                      lineType: ITEM
                      amount: 42.5
                      description: A sample description.
                      accountingDate: '2026-01-15'
                      distCodeCombinationId: '500123'
                      itemDescription: example_value
                      quantity: 42.5
                      unitPrice: 42.5
                    orgId: '500123'
                    createdBy: 10
                    creationDate: '2026-01-15T10:30:00Z'
                    lastUpdatedBy: 10
                    lastUpdateDate: '2026-01-15T10:30:00Z'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ap/invoices/{invoiceId}:
    get:
      operationId: getApInvoiceById
      summary: Retrieve a Specific Ap Invoice
      description: Retrieves an Accounts Payable invoice by its identifier.
      tags:
      - Accounts Payable
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: invoiceId
        in: path
        required: true
        schema:
          type: integer
        example: '500123'
      responses:
        '200':
          description: Invoice details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApInvoice'
              examples:
                Getapinvoicebyid200Example:
                  summary: Default getApInvoiceById 200 response
                  x-microcks-default: true
                  value:
                    invoiceId: '500123'
                    invoiceNum: example_value
                    invoiceDate: '2026-01-15'
                    vendorId: '500123'
                    vendorName: example_value
                    vendorSiteId: '500123'
                    invoiceAmount: 42.5
                    invoiceCurrencyCode: example_value
                    paymentCurrencyCode: example_value
                    exchangeRate: 42.5
                    exchangeRateType: example_value
                    exchangeDate: '2026-01-15'
                    termsId: '500123'
                    description: A sample description.
                    invoiceType: STANDARD
                    source: example_value
                    paymentStatusFlag: 'Y'
                    approvalStatus: APPROVED
                    amountPaid: '500123'
                    lines:
                    - lineNumber: 10
                      lineType: ITEM
                      amount: 42.5
                      description: A sample description.
                      accountingDate: '2026-01-15'
                      distCodeCombinationId: '500123'
                      itemDescription: example_value
                      quantity: 42.5
                      unitPrice: 42.5
                    orgId: '500123'
                    createdBy: 10
                    creationDate: '2026-01-15T10:30:00Z'
                    lastUpdatedBy: 10
                    lastUpdateDate: '2026-01-15T10:30:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ap/payments:
    get:
      operationId: getPayments
      summary: Retrieve Ap Payments
      description: >-
        Retrieves Accounts Payable payment records. Maps to the
        AP_CHECKS_ALL and AP_INVOICE_PAYMENTS_ALL tables.
      tags:
      - Accounts Payable
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: checkId
        in: query
        description: Payment check identifier
        schema:
          type: integer
        example: '500123'
      - name: vendorId
        in: query
        description: Supplier/vendor identifier
        schema:
          type: integer
        example: '500123'
      - name: paymentDateFrom
        in: query
        description: Payment date range start (YYYY-MM-DD)
        schema:
          type: string
          format: date
        example: '2026-01-15'
      - name: paymentDateTo
        in: query
        description: Payment date range end (YYYY-MM-DD)
        schema:
          type: string
          format: date
        example: '2026-01-15'
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: List of payments
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/ApPayment'
                  totalCount:
                    type: integer
                  hasMore:
                    type: boolean
              examples:
                Getpayments200Example:
                  summary: Default getPayments 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - checkId: '500123'
                      checkNumber: 10
                      amount: 42.5
                      currencyCode: example_value
                      checkDate: '2026-01-15'
                      vendorId: '500123'
                      vendorName: example_value
                      bankAccountId: '500123'
                      paymentMethodCode: example_value
                      status: example_value
                      orgId: '500123'
                    totalCount: 10
                    hasMore: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ar/invoices:
    get:
      operationId: getArInvoices
      summary: Retrieve Ar Invoices
      description: >-
        Retrieves Accounts Receivable invoices and transactions. Maps to the
        RA_CUSTOMER_TRX_ALL and RA_CUSTOMER_TRX_LINES_ALL tables.
      tags:
      - Accounts Receivable
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: customerTrxId
        in: query
        description: Customer transaction identifier
        schema:
          type: integer
        example: '500123'
      - name: trxNumber
        in: query
        description: Transaction number
        schema:
          type: string
        example: example_value
      - name: customerId
        in: query
        description: Customer identifier
        schema:
          type: integer
        example: '500123'
      - name: trxDateFrom
        in: query
        description: Transaction date range start (YYYY-MM-DD)
        schema:
          type: string
          format: date
        example: '2026-01-15'
      - name: trxDateTo
        in: query
        description: Transaction date range end (YYYY-MM-DD)
        schema:
          type: string
          format: date
        example: '2026-01-15'
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: List of AR invoices
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/ArInvoice'
                  totalCount:
                    type: integer
                  hasMore:
                    type: boolean
              examples:
                Getarinvoices200Example:
                  summary: Default getArInvoices 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - customerTrxId: '500123'
                      trxNumber: example_value
                      trxDate: '2026-01-15'
                      customerId: '500123'
                      customerName: example_value
                      billToSiteUseId: '500123'
                      shipToSiteUseId: '500123'
                      invoiceCurrencyCode: example_value
                      trxType: example_value
                      amount: 42.5
                      amountDue: 42.5
                      status: example_value
                      termsId: '500123'
                      lines:
                      - {}
                      orgId: '500123'
                      creationDate: '2026-01-15T10:30:00Z'
                      lastUpdateDate: '2026-01-15T10:30:00Z'
                    totalCount: 10
                    hasMore: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createArInvoice
      summary: Create an Ar Invoice
      description: >-
        Creates a new Accounts Receivable invoice/transaction using the
        RA_INTERFACE_LINES_ALL interface table and AutoInvoice concurrent
        program.
      tags:
      - Accounts Receivable
      security:
      - tokenAuth: []
      - basicAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ArInvoiceCreate'
            examples:
              CreatearinvoiceRequestExample:
                summary: Default createArInvoice request
                x-microcks-default: true
                value:
                  customerId: '500123'
                  trxDate: '2026-01-15'
                  invoiceCurrencyCode: example_value
                  batchSourceName: example_value
                  billToSiteUseId: '500123'
                  shipToSiteUseId: '500123'
                  termsId: '500123'
                  lines:
                  - lineNumber: 10
                    lineType: example_value
                    description: A sample description.
                    quantity: 42.5
                    unitSellingPrice: 42.5
                    inventoryItemId: '500123'
      responses:
        '201':
          description: AR invoice created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArInvoice'
              examples:
                Createarinvoice201Example:
                  summary: Default createArInvoice 201 response
                  x-microcks-default: true
                  value:
                    customerTrxId: '500123'
                    trxNumber: example_value
                    trxDate: '2026-01-15'
                    customerId: '500123'
                    customerName: example_value
                    billToSiteUseId: '500123'
                    shipToSiteUseId: '500123'
                    invoiceCurrencyCode: example_value
                    trxType: example_value
                    amount: 42.5
                    amountDue: 42.5
                    status: example_value
                    termsId: '500123'
                    lines:
                    - customerTrxLineId: '500123'
                      lineNumber: 10
                      lineType: LINE
                      description: A sample description.
                      quantity: 42.5
                      unitSellingPrice: 42.5
                      amount: 42.5
                      inventoryItemId: '500123'
                    orgId: '500123'
                    creationDate: '2026-01-15T10:30:00Z'
                    lastUpdateDate: '2026-01-15T10:30:00Z'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ar/receipts:
    get:
      operationId: getReceipts
      summary: Retrieve Ar Receipts
      description: >-
        Retrieves Accounts Receivable cash receipts. Maps to the
        AR_CASH_RECEIPTS_ALL table through the AR_RECEIPT_API_PUB PL/SQL API.
      tags:
      - Accounts Receivable
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: cashReceiptId
        in: query
        description: Cash receipt identifier
        schema:
          type: integer
        example: '500123'
      - name: receiptNumber
        in: query
        description: Receipt number
        schema:
          type: string
        example: example_value
      - name: customerId
        in: query
        description: Customer identifier
        schema:
          type: integer
        example: '500123'
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: List of receipts
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/ArReceipt'
                  totalCount:
                    type: integer
                  hasMore:
                    type: boolean
              examples:
                Getreceipts200Example:
                  summary: Default getReceipts 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - cashReceiptId: '500123'
                      receiptNumber: example_value
                      amount: 42.5
                      currencyCode: example_value
                      receiptDate: '2026-01-15'
                      customerId: '500123'
                      customerName: example_value
                      receiptMethodId: '500123'
                      status: example_value
                      orgId: '500123'
                    totalCount: 10
                    hasMore: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /fa/assets:
    get:
      operationId: getAssets
      summary: Retrieve Fixed Assets
      description: >-
        Retrieves Fixed Assets records. Maps to the FA_ADDITIONS_B and
        FA_BOOKS tables through the Fixed Assets API.
      tags:
      - Fixed Assets
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: assetId
        in: query
        description: Asset identifier
        schema:
          type: integer
        example: '500123'
      - name: assetNumber
        in: query
        description: Asset number
        schema:
          type: string
        example: example_value
      - name: assetCategory
        in: query
        description: Asset category
        schema:
          type: string
        example: example_value
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: List of fixed assets
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/FixedAsset'
                  totalCount:
                    type: integer
                  hasMore:
                    type: boolean
              examples:
                Getassets200Example:
                  summary: Default getAssets 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - assetId: '500123'
                      assetNumber: example_value
                      assetDescription: example_value
                      assetCategoryId: '500123'
                      assetType: CAPITALIZED
                      serialNumber: example_value
                      tagNumber: example_value
                      dateEffective: '2026-01-15'
                      dateInService: '2026-01-15'
                      cost: 42.5
                      salvageValue: 42.5
                      depreciationMethod: example_value
                      lifeInMonths: 10
                      bookTypeCode: example_value
                    totalCount: 10
                    hasMore: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ce/bankAccounts:
    get:
      operationId: getBankAccounts
      summary: Retrieve Bank Accounts
      description: >-
        Retrieves Cash Management bank account records. Maps to the
        CE_BANK_ACCOUNTS table through the Cash Management APIs.
      tags:
      - Cash Management
      security:
      - tokenAuth: []
      - basicAuth: []
      parameters:
      - name: bankAccountId
        in: query
        description: Bank account identifier
        schema:
          type: integer
        example: '500123'
      - name: bankAccountName
        in: query
        description: Bank account name
        schema:
          type: string
        example: example_value
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: List of bank accounts
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/BankAccount'
                  totalCount:
                    type: integer
                  hasMore:
                    type: boolean
              examples:
                Getbankaccounts200Example:
                  summary: Default getBankAccounts 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - bankAccountId: '500123'
                      bankAccountName: example_value
                      bankAccountNum: example_value
                      bankId: '500123'
                      bankName: example_value
                      branchId: '500123'
                      branchName: example_value
                      currencyCode: example_value
                      accountType: example_value
                      status: example_value
                    totalCount: 10
                    hasMore: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication with Oracle EBS username and password
    tokenAuth:
      type: apiKey
      in: cookie
      name: accessToken
      description: Token-based authentication using the ISG login access token
  parameters:
    Limit:
      name: limit
      in: query
      description: Maximum number of records to return
      schema:
        type: integer
        default: 25
        maximum: 500
    Offset:
      name: offset
      in: query
      description: Number of records to skip for pagination
      schema:
        type: integer
        default: 0
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schema

# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/oracle-e-business-suite/refs/heads/main/openapi/financial-services-api.yml