-
Bug Report
-
Resolution: Fixed
-
L3 - Default
-
7.17.0, 7.15.13, 7.16.7
-
None
-
None
Environment
Camunda 7.15+
Description
The REST API for task querying via POST request allows to add the parameters "taskId" and "taskIdIn" in the query. The corresponding method in the Open API Spec defines the TaskQueryDTO data structure which misses both parameters. As a result, the query for tasks by specifying ids is not possible if the REST client is generated based on the Open API specification.
Steps to reproduce (Required on creation)
Create a REST client from the OpenAPI specification.
Observed Behavior (Required on creation):
TaskQueryDto misses fields "taskId" and "taskIdIn"
Expected behavior (Required on creation):
TaskQueryDto contains all fields including "taskId" and "taskIdIn"
Solution Ideas (Optional):
Add missing fields to the OpenAPI specification of TaskQueryDto.