Oracle E-Business Suite · Capability

Oracle EBS Integrated SOA Gateway REST API — Authentication

Oracle EBS Integrated SOA Gateway REST API — Authentication. 3 operations. Lead operation: Initialize Application Context. Self-contained Naftiko capability covering one Oracle E Business Suite business surface.

Run with Naftiko Oracle E Business SuiteAuthentication

What You Can Do

POST
Initialize — Initialize Application Context
/v1/initialize
GET
Login — Authenticate and Obtain Access Token
/v1/login
GET
Logout — Terminate Session and Invalidate Token
/v1/logout

MCP Tools

initialize-application-context

Initialize Application Context

authenticate-and-obtain-access-token

Authenticate and Obtain Access Token

read-only idempotent
terminate-session-and-invalidate-token

Terminate Session and Invalidate Token

read-only idempotent

Capability Spec

isg-rest-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle EBS Integrated SOA Gateway REST API — Authentication
  description: 'Oracle EBS Integrated SOA Gateway REST API — Authentication. 3 operations. Lead operation: Initialize Application
    Context. Self-contained Naftiko capability covering one Oracle E Business Suite business surface.'
  tags:
  - Oracle E Business Suite
  - Authentication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_E_BUSINESS_SUITE_API_KEY: ORACLE_E_BUSINESS_SUITE_API_KEY
capability:
  consumes:
  - type: http
    namespace: isg-rest-authentication
    baseUri: https://{instance}.oracle.com/webservices/rest
    description: Oracle EBS Integrated SOA Gateway REST API — Authentication business capability. Self-contained, no shared
      references.
    resources:
    - name: initialize
      path: /initialize
      operations:
      - name: initialize
        method: POST
        description: Initialize Application Context
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: login
      path: /login
      operations:
      - name: login
        method: GET
        description: Authenticate and Obtain Access Token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: logout
      path: /logout
      operations:
      - name: logout
        method: GET
        description: Terminate Session and Invalidate Token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: accessToken
      value: '{{env.ORACLE_E_BUSINESS_SUITE_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: isg-rest-authentication-rest
    port: 8080
    description: REST adapter for Oracle EBS Integrated SOA Gateway REST API — Authentication. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/initialize
      name: initialize
      description: REST surface for initialize.
      operations:
      - method: POST
        name: initialize
        description: Initialize Application Context
        call: isg-rest-authentication.initialize
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/login
      name: login
      description: REST surface for login.
      operations:
      - method: GET
        name: login
        description: Authenticate and Obtain Access Token
        call: isg-rest-authentication.login
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/logout
      name: logout
      description: REST surface for logout.
      operations:
      - method: GET
        name: logout
        description: Terminate Session and Invalidate Token
        call: isg-rest-authentication.logout
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: isg-rest-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle EBS Integrated SOA Gateway REST API — Authentication. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: initialize-application-context
      description: Initialize Application Context
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: isg-rest-authentication.initialize
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: authenticate-and-obtain-access-token
      description: Authenticate and Obtain Access Token
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: isg-rest-authentication.login
      outputParameters:
      - type: object
        mapping: $.
    - name: terminate-session-and-invalidate-token
      description: Terminate Session and Invalidate Token
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: isg-rest-authentication.logout
      outputParameters:
      - type: object
        mapping: $.