Oracle Integration · Capability

Oracle Integration Developer API — Integrations

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

Run with Naftiko Oracle IntegrationIntegrations

What You Can Do

GET
Listintegrations — Oracle Integration List Integrations
/v1/ic/api/integration/v1/integrations
POST
Importintegration — Oracle Integration Import Integration
/v1/ic/api/integration/v1/integrations/archive
PUT
Replaceintegration — Oracle Integration Replace Integration
/v1/ic/api/integration/v1/integrations/archive
GET
Getintegration — Oracle Integration Get Integration
/v1/ic/api/integration/v1/integrations/{id}
POST
Updateintegrationstatus — Oracle Integration Activate or Deactivate Integration
/v1/ic/api/integration/v1/integrations/{id}
DELETE
Deleteintegration — Oracle Integration Delete Integration Version
/v1/ic/api/integration/v1/integrations/{id}
GET
Getintegrationactivationstatus — Oracle Integration Get Activation Status
/v1/ic/api/integration/v1/integrations/{id}/activationstatus
GET
Exportintegration — Oracle Integration Export Integration
/v1/ic/api/integration/v1/integrations/{id}/archive
POST
Cloneintegration — Oracle Integration Clone Integration
/v1/ic/api/integration/v1/integrations/{id}/clone

MCP Tools

oracle-integration-list-integrations

Oracle Integration List Integrations

read-only idempotent
oracle-integration-import-integration

Oracle Integration Import Integration

oracle-integration-replace-integration

Oracle Integration Replace Integration

idempotent
oracle-integration-get-integration

Oracle Integration Get Integration

read-only idempotent
oracle-integration-activate-deactivate-integration

Oracle Integration Activate or Deactivate Integration

oracle-integration-delete-integration-version

Oracle Integration Delete Integration Version

idempotent
oracle-integration-get-activation-status

Oracle Integration Get Activation Status

read-only idempotent
oracle-integration-export-integration

Oracle Integration Export Integration

read-only idempotent
oracle-integration-clone-integration

Oracle Integration Clone Integration

Capability Spec

developer-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Integration Developer API — Integrations
  description: 'Oracle Integration Developer API — Integrations. 9 operations. Lead operation: Oracle Integration List Integrations.
    Self-contained Naftiko capability covering one Oracle Integration business surface.'
  tags:
  - Oracle Integration
  - Integrations
  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-integrations
    baseUri: https://{instance}.integration.ocp.oraclecloud.com
    description: Oracle Integration Developer API — Integrations business capability. Self-contained, no shared references.
    resources:
    - name: ic-api-integration-v1-integrations
      path: /ic/api/integration/v1/integrations
      operations:
      - name: listintegrations
        method: GET
        description: Oracle Integration List Integrations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: q
          in: query
          type: string
          description: Filter query string.
    - name: ic-api-integration-v1-integrations-archive
      path: /ic/api/integration/v1/integrations/archive
      operations:
      - name: importintegration
        method: POST
        description: Oracle Integration Import Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: replaceintegration
        method: PUT
        description: Oracle Integration Replace Integration
        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-integrations-id
      path: /ic/api/integration/v1/integrations/{id}
      operations:
      - name: getintegration
        method: GET
        description: Oracle Integration Get Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateintegrationstatus
        method: POST
        description: Oracle Integration Activate or Deactivate Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteintegration
        method: DELETE
        description: Oracle Integration Delete Integration Version
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: ic-api-integration-v1-integrations-id-activationStatus
      path: /ic/api/integration/v1/integrations/{id}/activationStatus
      operations:
      - name: getintegrationactivationstatus
        method: GET
        description: Oracle Integration Get Activation Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: ic-api-integration-v1-integrations-id-archive
      path: /ic/api/integration/v1/integrations/{id}/archive
      operations:
      - name: exportintegration
        method: GET
        description: Oracle Integration Export Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: ic-api-integration-v1-integrations-id-clone
      path: /ic/api/integration/v1/integrations/{id}/clone
      operations:
      - name: cloneintegration
        method: POST
        description: Oracle Integration Clone Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ORACLE_INTEGRATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: developer-integrations-rest
    port: 8080
    description: REST adapter for Oracle Integration Developer API — Integrations. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/ic/api/integration/v1/integrations
      name: ic-api-integration-v1-integrations
      description: REST surface for ic-api-integration-v1-integrations.
      operations:
      - method: GET
        name: listintegrations
        description: Oracle Integration List Integrations
        call: developer-integrations.listintegrations
        with:
          q: rest.q
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/integrations/archive
      name: ic-api-integration-v1-integrations-archive
      description: REST surface for ic-api-integration-v1-integrations-archive.
      operations:
      - method: POST
        name: importintegration
        description: Oracle Integration Import Integration
        call: developer-integrations.importintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: replaceintegration
        description: Oracle Integration Replace Integration
        call: developer-integrations.replaceintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/integrations/{id}
      name: ic-api-integration-v1-integrations-id
      description: REST surface for ic-api-integration-v1-integrations-id.
      operations:
      - method: GET
        name: getintegration
        description: Oracle Integration Get Integration
        call: developer-integrations.getintegration
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updateintegrationstatus
        description: Oracle Integration Activate or Deactivate Integration
        call: developer-integrations.updateintegrationstatus
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteintegration
        description: Oracle Integration Delete Integration Version
        call: developer-integrations.deleteintegration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/integrations/{id}/activationstatus
      name: ic-api-integration-v1-integrations-id-activationstatus
      description: REST surface for ic-api-integration-v1-integrations-id-activationStatus.
      operations:
      - method: GET
        name: getintegrationactivationstatus
        description: Oracle Integration Get Activation Status
        call: developer-integrations.getintegrationactivationstatus
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/integrations/{id}/archive
      name: ic-api-integration-v1-integrations-id-archive
      description: REST surface for ic-api-integration-v1-integrations-id-archive.
      operations:
      - method: GET
        name: exportintegration
        description: Oracle Integration Export Integration
        call: developer-integrations.exportintegration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/integrations/{id}/clone
      name: ic-api-integration-v1-integrations-id-clone
      description: REST surface for ic-api-integration-v1-integrations-id-clone.
      operations:
      - method: POST
        name: cloneintegration
        description: Oracle Integration Clone Integration
        call: developer-integrations.cloneintegration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: developer-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Integration Developer API — Integrations. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: oracle-integration-list-integrations
      description: Oracle Integration List Integrations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-integrations.listintegrations
      with:
        q: tools.q
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-import-integration
      description: Oracle Integration Import Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-integrations.importintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-replace-integration
      description: Oracle Integration Replace Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: developer-integrations.replaceintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-get-integration
      description: Oracle Integration Get Integration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-integrations.getintegration
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-activate-deactivate-integration
      description: Oracle Integration Activate or Deactivate Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-integrations.updateintegrationstatus
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-delete-integration-version
      description: Oracle Integration Delete Integration Version
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: developer-integrations.deleteintegration
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-get-activation-status
      description: Oracle Integration Get Activation Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-integrations.getintegrationactivationstatus
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-export-integration
      description: Oracle Integration Export Integration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-integrations.exportintegration
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-clone-integration
      description: Oracle Integration Clone Integration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-integrations.cloneintegration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.