Oracle Integration · Capability

Oracle Integration Developer API — Lookups

Oracle Integration Developer API — Lookups. 5 operations. Lead operation: Oracle Integration List Lookups. Self-contained Naftiko capability covering one Oracle Integration business surface.

Run with Naftiko Oracle IntegrationLookups

What You Can Do

GET
Listlookups — Oracle Integration List Lookups
/v1/ic/api/integration/v1/lookups
POST
Createlookup — Oracle Integration Create Lookup
/v1/ic/api/integration/v1/lookups
GET
Getlookup — Oracle Integration Get Lookup
/v1/ic/api/integration/v1/lookups/{name}
PUT
Updatelookup — Oracle Integration Update Lookup
/v1/ic/api/integration/v1/lookups/{name}
DELETE
Deletelookup — Oracle Integration Delete Lookup
/v1/ic/api/integration/v1/lookups/{name}

MCP Tools

oracle-integration-list-lookups

Oracle Integration List Lookups

read-only idempotent
oracle-integration-create-lookup

Oracle Integration Create Lookup

read-only
oracle-integration-get-lookup

Oracle Integration Get Lookup

read-only idempotent
oracle-integration-update-lookup

Oracle Integration Update Lookup

idempotent
oracle-integration-delete-lookup

Oracle Integration Delete Lookup

idempotent

Capability Spec

developer-lookups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Integration Developer API — Lookups
  description: 'Oracle Integration Developer API — Lookups. 5 operations. Lead operation: Oracle Integration List Lookups.
    Self-contained Naftiko capability covering one Oracle Integration business surface.'
  tags:
  - Oracle Integration
  - Lookups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_INTEGRATION_API_KEY: ORACLE_INTEGRATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: developer-lookups
    baseUri: https://{instance}.integration.ocp.oraclecloud.com
    description: Oracle Integration Developer API — Lookups business capability. Self-contained, no shared references.
    resources:
    - name: ic-api-integration-v1-lookups
      path: /ic/api/integration/v1/lookups
      operations:
      - name: listlookups
        method: GET
        description: Oracle Integration List Lookups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createlookup
        method: POST
        description: Oracle Integration Create Lookup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ic-api-integration-v1-lookups-name
      path: /ic/api/integration/v1/lookups/{name}
      operations:
      - name: getlookup
        method: GET
        description: Oracle Integration Get Lookup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: path
          type: string
          description: Lookup name.
          required: true
      - name: updatelookup
        method: PUT
        description: Oracle Integration Update Lookup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: path
          type: string
          description: Lookup name.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletelookup
        method: DELETE
        description: Oracle Integration Delete Lookup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: path
          type: string
          description: Lookup name.
          required: true
    authentication:
      type: bearer
      token: '{{env.ORACLE_INTEGRATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: developer-lookups-rest
    port: 8080
    description: REST adapter for Oracle Integration Developer API — Lookups. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/ic/api/integration/v1/lookups
      name: ic-api-integration-v1-lookups
      description: REST surface for ic-api-integration-v1-lookups.
      operations:
      - method: GET
        name: listlookups
        description: Oracle Integration List Lookups
        call: developer-lookups.listlookups
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createlookup
        description: Oracle Integration Create Lookup
        call: developer-lookups.createlookup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/lookups/{name}
      name: ic-api-integration-v1-lookups-name
      description: REST surface for ic-api-integration-v1-lookups-name.
      operations:
      - method: GET
        name: getlookup
        description: Oracle Integration Get Lookup
        call: developer-lookups.getlookup
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatelookup
        description: Oracle Integration Update Lookup
        call: developer-lookups.updatelookup
        with:
          name: rest.name
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletelookup
        description: Oracle Integration Delete Lookup
        call: developer-lookups.deletelookup
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: developer-lookups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Integration Developer API — Lookups. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-integration-list-lookups
      description: Oracle Integration List Lookups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-lookups.listlookups
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-create-lookup
      description: Oracle Integration Create Lookup
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: developer-lookups.createlookup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-get-lookup
      description: Oracle Integration Get Lookup
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-lookups.getlookup
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-update-lookup
      description: Oracle Integration Update Lookup
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: developer-lookups.updatelookup
      with:
        name: tools.name
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-delete-lookup
      description: Oracle Integration Delete Lookup
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: developer-lookups.deletelookup
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.