Skip to main content
Version: Next

Query decision definitions (alpha)

POST 

/decision-definitions/search

Search for decision definitions based on given criteria.

note

This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. See the Camunda 8 REST API overview for further details.

Request

Body

    sort object[]
  • Array [
  • field stringrequired
    order string

    Default value: asc

  • ]
  • page object
    from int32
    limit int32
    searchAfter object[]
    searchBefore object[]
    filter object
    decisionKey int64

    The assigned key, which acts as a unique identifier for this decision definition.

    dmnDecisionId string

    The DMN id of the decision definition.

    dmnDecisionName string

    The DMN name of the decision definition.

    version int32

    The assigned version of the decision definition.

    dmnDecisionRequirementsId string

    the DMN id of the decision requirements graph that the decision definition is part of.

    decisionRequirementsKey int64

    The assigned key of the decision requirements graph that the decision definition is part of.

    tenantId string

    The tenant id of the decision definition.

Responses

The Decision Definition Search successful response.

Schema
    page object
    totalItems int64
    firstSortValues object[]
    lastSortValues object[]
    items object[]
  • Array [
  • decisionKey int64

    The assigned key, which acts as a unique identifier for this decision definition.

    dmnDecisionId string

    The DMN id of the decision definition.

    dmnDecisionName string

    The DMN name of the decision definition.

    version int32

    The assigned version of the decision definition.

    dmnDecisionRequirementsId string

    the DMN id of the decision requirements graph that the decision definition is part of.

    decisionRequirementsKey int64

    The assigned key of the decision requirements graph that the decision definition is part of.

    tenantId string

    The tenant id of the decision definition.

  • ]
Loading...