Query decision requirements (alpha)
POST/decision-requirements/search
Search for decision requirements based on given criteria.
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
- application/json
Body
- Array [
- ]
sort object[]
Default value: asc
page object
filter object
The assigned key, which acts as a unique identifier for this decision requirements.
The DMN name of the decision requirements.
The assigned version of the decision requirements.
the DMN id of the decision requirements.
The tenant ID of the decision requirements.
Responses
- 200
- 400
The decision requirements search successful response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
page object
items object[]
The assigned key, which acts as a unique identifier for this decision requirements.
The DMN name of the decision requirements.
The assigned version of the decision requirements.
the DMN id of the decision requirements.
The name of the resource from which this decision requirements was parsed.
The tenant ID of the decision requirements.
{
"items": [
{
"decisionRequirementsKey": 0,
"decisionRequirementsName": "string",
"version": 0,
"decisionRequirementsId": "string",
"resourceName": "string",
"tenantId": "string"
}
],
"page": {
"totalItems": 0,
"firstSortValues": [
{}
],
"lastSortValues": [
{}
]
}
}
The decision requirements search query failed. More details are provided in the response body.