Oracle Integration Decision Models API

Manage DMN decision models and services.

Operations 5

GET /ic/api/process/v1/dmn/spaces Oracle Integration List DMN Spaces #
GET /ic/api/process/v1/dmn/spaces/{spaceId}/decision-models Oracle Integration List Decision Models #
GET /ic/api/process/v1/dmn/spaces/{spaceId}/decision-models/{decisionModelName} Oracle Integration Get Decision Model #
PUT /ic/api/process/v1/dmn/spaces/{spaceId}/decision-models/{decisionModelName} Oracle Integration Create Decision Model #
DELETE /ic/api/process/v1/dmn/spaces/{spaceId}/decision-models/{decisionModelName} Oracle Integration Delete Decision Model #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/oracle-integration-decision-models-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

oracle-integration-decision-models-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle Integration Developer Adapters Decision Models API
  description: Developer API for Oracle Integration 3 providing day-to-day management of integrations, connections, packages, libraries, lookups, certificates, scheduled integrations, monitoring, B2B trading partner operations, and rapid adapter building.
  version: 1.0.0
  contact:
    name: Oracle Integration Support
    email: oracle-integration-support@oracle.com
    url: https://www.oracle.com/support/
  license:
    name: Oracle Terms of Service
    url: https://www.oracle.com/legal/terms.html
  x-generated-from: documentation
  x-last-validated: '2026-04-18'
servers:
- url: https://{instance}.integration.ocp.oraclecloud.com
  description: Oracle Integration Cloud Instance
  variables:
    instance:
      default: myinstance
      description: Oracle Integration instance name
security:
- oauth2: []
- basicAuth: []
tags:
- name: Decision Models
  description: Manage DMN decision models and services.
paths:
  /ic/api/process/v1/dmn/spaces:
    get:
      operationId: listDmnSpaces
      summary: Oracle Integration List DMN Spaces
      description: Retrieve a list of all DMN spaces.
      tags:
      - Decision Models
      responses:
        '200':
          description: Spaces retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpaceList'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ic/api/process/v1/dmn/spaces/{spaceId}/decision-models:
    get:
      operationId: listDecisionModels
      summary: Oracle Integration List Decision Models
      description: List decision model names in a space.
      tags:
      - Decision Models
      parameters:
      - $ref: '#/components/parameters/spaceIdParam'
      responses:
        '200':
          description: Decision models retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionModelList'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /ic/api/process/v1/dmn/spaces/{spaceId}/decision-models/{decisionModelName}:
    get:
      operationId: getDecisionModel
      summary: Oracle Integration Get Decision Model
      description: Retrieve a specific decision model.
      tags:
      - Decision Models
      parameters:
      - $ref: '#/components/parameters/spaceIdParam'
      - $ref: '#/components/parameters/decisionModelNameParam'
      responses:
        '200':
          description: Decision model retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionModel'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      operationId: createDecisionModel
      summary: Oracle Integration Create Decision Model
      description: Create an empty decision model.
      tags:
      - Decision Models
      parameters:
      - $ref: '#/components/parameters/spaceIdParam'
      - $ref: '#/components/parameters/decisionModelNameParam'
      responses:
        '201':
          description: Decision model created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionModel'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: deleteDecisionModel
      summary: Oracle Integration Delete Decision Model
      description: Delete a decision model and all its snapshots.
      tags:
      - Decision Models
      parameters:
      - $ref: '#/components/parameters/spaceIdParam'
      - $ref: '#/components/parameters/decisionModelNameParam'
      responses:
        '204':
          description: Decision model deleted.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  responses:
    Unauthorized:
      description: Authentication required.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    SpaceList:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
            properties:
              spaceId:
                type: string
                example: default
              name:
                type: string
                example: Default Space
    DecisionModel:
      type: object
      properties:
        name:
          type: string
          description: Decision model name.
          example: LoanApprovalDecision
        description:
          type: string
          description: Model description.
          example: Decision model for loan approval evaluation.
        spaceId:
          type: string
          description: Space identifier.
          example: default
    DecisionModelList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/DecisionModel'
    ErrorResponse:
      type: object
      properties:
        type:
          type: string
          example: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
        title:
          type: string
          example: Not Found
        detail:
          type: string
          example: Process instance not found.
        status:
          type: integer
          example: 404
  parameters:
    spaceIdParam:
      name: spaceId
      in: path
      required: true
      description: Space identifier.
      schema:
        type: string
    decisionModelNameParam:
      name: decisionModelName
      in: path
      required: true
      description: Decision model name.
      schema:
        type: string
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth 2.0 authentication via Oracle Identity Cloud Service (IDCS).
      flows:
        authorizationCode:
          authorizationUrl: https://{idcs-url}/oauth2/v1/authorize
          tokenUrl: https://{idcs-url}/oauth2/v1/token
          scopes:
            urn:opc:resource:consumer::all: Full access to Oracle Integration APIs
    basicAuth:
      type: http
      scheme: basic
      description: Basic authentication with Oracle Integration credentials.