Flowable DMN Rule Service API

The DMN Rule Service API from Flowable — 2 operation(s) for dmn rule service.

Operations 2

POST /dmn-rule/execute Execute a Decision #
POST /dmn-rule/execute/single-result Execute a decision or a decision service expecting a single result #

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/flowable-dmn-rule-service-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

flowable-dmn-rule-service-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '# flowable / flowəb(ə)l /


    - a compact and highly efficient workflow and Business Process Management (BPM) platform for developers, system admins and business users.

    - a lightning fast, tried and tested BPMN 2 process engine written in Java. It is Apache 2.0 licensed open source, with a committed community.

    - can run embedded in a Java application, or as a service on a server, a cluster, and in the cloud. It integrates perfectly with Spring. With a rich Java and REST API, it is the ideal engine for orchestrating human or system activities.'
  version: v1
  title: Flowable REST Access Tokens DMN Rule Service API
  contact:
    name: Flowable
    url: http://www.flowable.org/
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: /flowable-rest/service
tags:
- name: DMN Rule Service
paths:
  /dmn-rule/execute:
    post:
      tags:
      - DMN Rule Service
      summary: Execute a Decision
      description: ''
      operationId: execute
      requestBody:
        $ref: '#/components/requestBodies/DmnRuleServiceRequest'
      responses:
        '201':
          description: Indicates the Decision has been executed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmnRuleServiceResponse'
      security:
      - basicAuth: []
  /dmn-rule/execute/single-result:
    post:
      tags:
      - DMN Rule Service
      summary: Execute a decision or a decision service expecting a single result
      description: ''
      operationId: executeWithSingleResult
      requestBody:
        $ref: '#/components/requestBodies/DmnRuleServiceRequest'
      responses:
        '201':
          description: Indicates the decision or decision service has been executed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmnRuleServiceSingleResponse'
        '500':
          description: Indicates the decision or decision service returned multiple results
      security:
      - basicAuth: []
components:
  schemas:
    DmnRuleServiceSingleResponse:
      type: object
      properties:
        resultVariables:
          type: array
          items:
            $ref: '#/components/schemas/EngineRestVariable'
        url:
          type: string
    DmnRuleServiceRequest:
      type: object
      properties:
        decisionKey:
          type: string
        tenantId:
          type: string
        parentDeploymentId:
          type: string
        inputVariables:
          type: array
          items:
            $ref: '#/components/schemas/EngineRestVariable'
        disableHistory:
          type: boolean
    EngineRestVariable:
      type: object
      properties:
        name:
          type: string
          example: myVariable
          description: Name of the variable
        type:
          type: string
          example: string
          description: Type of the variable.
        value:
          type: object
          example: test
          description: Value of the variable.
        valueUrl:
          type: string
          example: http://....
    DmnRuleServiceResponse:
      type: object
      properties:
        resultVariables:
          type: array
          items:
            type: array
            items:
              $ref: '#/components/schemas/EngineRestVariable'
        url:
          type: string
  requestBodies:
    DmnRuleServiceRequest:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/DmnRuleServiceRequest'
      description: request
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic