Flowable Decision Tables API

The Decision Tables API from Flowable — 4 operation(s) for decision tables.

Operations 4

GET /dmn-repository/decision-tables List of decision tables #
GET /dmn-repository/decision-tables/{decisionTableId} Get a decision table #
GET /dmn-repository/decision-tables/{decisionTableId}/model Get a decision table DMN (definition) model #
GET /dmn-repository/decision-tables/{decisionTableId}/resourcedata Get a decision table resource content #

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-decision-tables-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-decision-tables-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 Decision Tables 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: Decision Tables
paths:
  /dmn-repository/decision-tables:
    get:
      tags:
      - Decision Tables
      summary: List of decision tables
      description: ''
      operationId: listDecisionTables
      parameters:
      - name: category
        in: query
        description: Only return decision tables with the given category.
        required: false
        schema:
          type: string
      - name: categoryLike
        in: query
        description: Only return decision tables with a category like the given name.
        required: false
        schema:
          type: string
      - name: categoryNotEquals
        in: query
        description: Only return decision tables which do not have the given category.
        required: false
        schema:
          type: string
      - name: key
        in: query
        description: Only return decision tables with the given key.
        required: false
        schema:
          type: string
      - name: keyLike
        in: query
        description: Only return decision tables with a name like the given key.
        required: false
        schema:
          type: string
      - name: name
        in: query
        description: Only return decision tables with the given name.
        required: false
        schema:
          type: string
      - name: nameLike
        in: query
        description: Only return decision tables with a name like the given name.
        required: false
        schema:
          type: string
      - name: resourceName
        in: query
        description: Only return decision tables with the given resource name.
        required: false
        schema:
          type: string
      - name: resourceNameLike
        in: query
        description: Only return decision tables with a name like the given resource name.
        required: false
        schema:
          type: string
      - name: version
        in: query
        description: Only return decision tables with the given version.
        required: false
        schema:
          type: integer
      - name: latest
        in: query
        description: Only return the latest decision tables versions. Can only be used together with key and keyLike parameters, using any other parameter will result in a 400-response.
        required: false
        schema:
          type: boolean
      - name: deploymentId
        in: query
        description: Only return decision tables with the given category.
        required: false
        schema:
          type: string
      - name: tenantId
        in: query
        description: Only return decision tables with the given tenant ID.
        required: false
        schema:
          type: string
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - name
          - id
          - key
          - category
          - deploymentId
          - version
      - name: order
        in: query
        description: The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
      - name: size
        in: query
        description: Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Indicates request was successful and the process-definitions are returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseDecisionResponse'
        '400':
          description: Indicates a parameter was passed in the wrong format or that latest is used with other parameters other than key and keyLike. The status-message contains additional information.
      security:
      - basicAuth: []
  /dmn-repository/decision-tables/{decisionTableId}:
    get:
      tags:
      - Decision Tables
      summary: Get a decision table
      description: ''
      operationId: getDecisionTable
      parameters:
      - name: decisionTableId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates request was successful and the decision table is returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionResponse'
        '404':
          description: Indicates the requested decision table was not found.
      security:
      - basicAuth: []
  /dmn-repository/decision-tables/{decisionTableId}/model:
    get:
      tags:
      - Decision Tables
      summary: Get a decision table DMN (definition) model
      description: ''
      operationId: getDecisionTableModel
      parameters:
      - name: decisionTableId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the decision table was found and the model is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DmnDefinition'
        '404':
          description: Indicates the requested decision table was not found.
      security:
      - basicAuth: []
  /dmn-repository/decision-tables/{decisionTableId}/resourcedata:
    get:
      tags:
      - Decision Tables
      summary: Get a decision table resource content
      description: ''
      operationId: getDecisionTableResource
      parameters:
      - name: decisionTableId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates both decision table and resource have been found and the resource data has been returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                  format: byte
        '404':
          description: Indicates the requested decision table was not found or there is no resource with the given id present in the decision table. The status-description contains additional information.
      security:
      - basicAuth: []
components:
  schemas:
    InputData:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        variable:
          $ref: '#/components/schemas/InformationItem'
    DmnExtensionElement:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        namespacePrefix:
          type: string
        namespace:
          type: string
        elementText:
          type: string
        childElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
    DmnDiDiagram:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        graphicInfo:
          $ref: '#/components/schemas/GraphicInfo'
    GraphicInfo:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        x:
          type: number
          format: double
        y:
          type: number
          format: double
        height:
          type: number
          format: double
        width:
          type: number
          format: double
        element:
          $ref: '#/components/schemas/DmnElement'
        expanded:
          type: boolean
        xmlRowNumber:
          type: integer
          format: int32
        xmlColumnNumber:
          type: integer
          format: int32
    InformationItem:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        typeRef:
          type: string
    InformationRequirement:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        requiredDecision:
          $ref: '#/components/schemas/DmnElementReference'
        requiredInput:
          $ref: '#/components/schemas/DmnElementReference'
    DataResponseDecisionResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/DecisionResponse'
        total:
          type: integer
          format: int64
        start:
          type: integer
          format: int32
        sort:
          type: string
        order:
          type: string
        size:
          type: integer
          format: int32
    Expression:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        typeRef:
          type: string
    DecisionResponse:
      type: object
      properties:
        id:
          type: string
          example: 46b0379c-c0a1-11e6-bc93-6ab56fad108a
        url:
          type: string
          example: http://localhost:8080/flowable-rest/dmn-api/dmn-repository/decisions/46b0379c-c0a1-11e6-bc93-6ab56fad108a
        category:
          type: string
          example: dmnTest
        name:
          type: string
          example: Decision Table One
        key:
          type: string
          example: DecisionTableOne
        description:
          type: string
          example: This is a simple description
        version:
          type: integer
          format: int32
          example: 3
        resourceName:
          type: string
          example: dmn-DecisionTableOne.dmn
        deploymentId:
          type: string
          example: 46aa6b3a-c0a1-11e6-bc93-6ab56fad108a
        tenantId:
          type: string
          example: 'null'
        decisionType:
          type: string
          example: decision_table
    DecisionService:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        outputDecisions:
          type: array
          items:
            $ref: '#/components/schemas/DmnElementReference'
        encapsulatedDecisions:
          type: array
          items:
            $ref: '#/components/schemas/DmnElementReference'
        inputDecisions:
          type: array
          items:
            $ref: '#/components/schemas/DmnElementReference'
        inputData:
          type: array
          items:
            $ref: '#/components/schemas/DmnElementReference'
    UnaryTests:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        text:
          type: string
        textValues:
          type: array
          items:
            type: object
        expressionLanguage:
          type: string
    Decision:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        question:
          type: string
        allowedAnswers:
          type: string
        variable:
          $ref: '#/components/schemas/InformationItem'
        requiredDecisions:
          type: array
          items:
            $ref: '#/components/schemas/InformationRequirement'
        requiredInputs:
          type: array
          items:
            $ref: '#/components/schemas/InformationRequirement'
        authorityRequirements:
          type: array
          items:
            $ref: '#/components/schemas/AuthorityRequirement'
        expression:
          $ref: '#/components/schemas/Expression'
        forceDMN11:
          type: boolean
    DmnElementReference:
      type: object
      properties:
        href:
          type: string
        parsedId:
          type: string
    DmnExtensionAttribute:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
        namespacePrefix:
          type: string
        namespace:
          type: string
    DmnElement:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
    ItemDefinition:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        typeRef:
          type: string
        allowedValues:
          $ref: '#/components/schemas/UnaryTests'
        itemComponents:
          type: array
          items:
            $ref: '#/components/schemas/ItemDefinition'
        typeLanguage:
          type: string
        collection:
          type: boolean
    DmnDefinition:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        expressionLanguage:
          type: string
        typeLanguage:
          type: string
        namespace:
          type: string
        exporter:
          type: string
        exporterVersion:
          type: string
        inputData:
          type: array
          items:
            $ref: '#/components/schemas/InputData'
        itemDefinitions:
          type: array
          items:
            $ref: '#/components/schemas/ItemDefinition'
        decisions:
          type: array
          items:
            $ref: '#/components/schemas/Decision'
        decisionServices:
          type: array
          items:
            $ref: '#/components/schemas/DecisionService'
        locationMap:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/GraphicInfo'
        locationByDiagramIdMap:
          type: object
          additionalProperties:
            type: object
            additionalProperties:
              $ref: '#/components/schemas/GraphicInfo'
        labelLocationByDiagramIdMap:
          type: object
          additionalProperties:
            type: object
            additionalProperties:
              $ref: '#/components/schemas/GraphicInfo'
        flowLocationMap:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/GraphicInfo'
        flowLocationByDiagramIdMap:
          type: object
          additionalProperties:
            type: object
            additionalProperties:
              type: array
              items:
                $ref: '#/components/schemas/GraphicInfo'
        decisionServiceDividerLocationMap:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/GraphicInfo'
        decisionServiceDividerLocationByDiagramIdMap:
          type: object
          additionalProperties:
            type: object
            additionalProperties:
              type: array
              items:
                $ref: '#/components/schemas/GraphicInfo'
        namespaces:
          type: object
          additionalProperties:
            type: string
        diDiagramMap:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/DmnDiDiagram'
    AuthorityRequirement:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        description:
          type: string
        extensionElements:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionElement'
        attributes:
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/DmnExtensionAttribute'
        name:
          type: string
        requiredDecision:
          $ref: '#/components/schemas/DmnElementReference'
        requiredInput:
          $ref: '#/components/schemas/DmnElementReference'
        requiredAuthority:
          $ref: '#/components/schemas/DmnElementReference'
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic