Oracle Integration · Capability

Oracle Integration Developer API — Connections

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

Run with Naftiko Oracle IntegrationConnections

What You Can Do

GET
Listconnections — Oracle Integration List Connections
/v1/ic/api/integration/v1/connections
GET
Getconnection — Oracle Integration Get Connection
/v1/ic/api/integration/v1/connections/{id}
POST
Updateconnection — Oracle Integration Update Connection
/v1/ic/api/integration/v1/connections/{id}
DELETE
Deleteconnection — Oracle Integration Delete Connection
/v1/ic/api/integration/v1/connections/{id}
POST
Refreshconnectionmetadata — Oracle Integration Refresh Connection Metadata
/v1/ic/api/integration/v1/connections/{id}/metadata
POST
Testconnection — Oracle Integration Test Connection
/v1/ic/api/integration/v1/connections/{id}/test

MCP Tools

oracle-integration-list-connections

Oracle Integration List Connections

read-only idempotent
oracle-integration-get-connection

Oracle Integration Get Connection

read-only idempotent
oracle-integration-update-connection

Oracle Integration Update Connection

oracle-integration-delete-connection

Oracle Integration Delete Connection

idempotent
oracle-integration-refresh-connection-metadata

Oracle Integration Refresh Connection Metadata

oracle-integration-test-connection

Oracle Integration Test Connection

read-only

Capability Spec

developer-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Integration Developer API — Connections
  description: 'Oracle Integration Developer API — Connections. 6 operations. Lead operation: Oracle Integration List Connections.
    Self-contained Naftiko capability covering one Oracle Integration business surface.'
  tags:
  - Oracle Integration
  - Connections
  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-connections
    baseUri: https://{instance}.integration.ocp.oraclecloud.com
    description: Oracle Integration Developer API — Connections business capability. Self-contained, no shared references.
    resources:
    - name: ic-api-integration-v1-connections
      path: /ic/api/integration/v1/connections
      operations:
      - name: listconnections
        method: GET
        description: Oracle Integration List Connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: q
          in: query
          type: string
          description: Filter query string.
    - name: ic-api-integration-v1-connections-id
      path: /ic/api/integration/v1/connections/{id}
      operations:
      - name: getconnection
        method: GET
        description: Oracle Integration Get Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateconnection
        method: POST
        description: Oracle Integration Update Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteconnection
        method: DELETE
        description: Oracle Integration Delete Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: ic-api-integration-v1-connections-id-metadata
      path: /ic/api/integration/v1/connections/{id}/metadata
      operations:
      - name: refreshconnectionmetadata
        method: POST
        description: Oracle Integration Refresh Connection Metadata
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: ic-api-integration-v1-connections-id-test
      path: /ic/api/integration/v1/connections/{id}/test
      operations:
      - name: testconnection
        method: POST
        description: Oracle Integration Test Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.ORACLE_INTEGRATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: developer-connections-rest
    port: 8080
    description: REST adapter for Oracle Integration Developer API — Connections. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/ic/api/integration/v1/connections
      name: ic-api-integration-v1-connections
      description: REST surface for ic-api-integration-v1-connections.
      operations:
      - method: GET
        name: listconnections
        description: Oracle Integration List Connections
        call: developer-connections.listconnections
        with:
          q: rest.q
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/connections/{id}
      name: ic-api-integration-v1-connections-id
      description: REST surface for ic-api-integration-v1-connections-id.
      operations:
      - method: GET
        name: getconnection
        description: Oracle Integration Get Connection
        call: developer-connections.getconnection
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updateconnection
        description: Oracle Integration Update Connection
        call: developer-connections.updateconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteconnection
        description: Oracle Integration Delete Connection
        call: developer-connections.deleteconnection
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/connections/{id}/metadata
      name: ic-api-integration-v1-connections-id-metadata
      description: REST surface for ic-api-integration-v1-connections-id-metadata.
      operations:
      - method: POST
        name: refreshconnectionmetadata
        description: Oracle Integration Refresh Connection Metadata
        call: developer-connections.refreshconnectionmetadata
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ic/api/integration/v1/connections/{id}/test
      name: ic-api-integration-v1-connections-id-test
      description: REST surface for ic-api-integration-v1-connections-id-test.
      operations:
      - method: POST
        name: testconnection
        description: Oracle Integration Test Connection
        call: developer-connections.testconnection
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: developer-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Integration Developer API — Connections. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-integration-list-connections
      description: Oracle Integration List Connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-connections.listconnections
      with:
        q: tools.q
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-get-connection
      description: Oracle Integration Get Connection
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-connections.getconnection
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-update-connection
      description: Oracle Integration Update Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-connections.updateconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-delete-connection
      description: Oracle Integration Delete Connection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: developer-connections.deleteconnection
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-refresh-connection-metadata
      description: Oracle Integration Refresh Connection Metadata
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-connections.refreshconnectionmetadata
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-integration-test-connection
      description: Oracle Integration Test Connection
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: developer-connections.testconnection
      outputParameters:
      - type: object
        mapping: $.