Hi there, currently I’m trying to filter out tasks and some of the criterias are: Step name, Step start date, Step status, Initiator. Couldn’t not find any of those in the TaskQuery methods, is there any way I can filter the tasks using these criterias? Thanks.
If you are using camunda rest api, refer the docs or check for relevant function in TaskService API
Initiator will be available at Process instance level.
StepStartdate you need to refer startTime attribute
StepStatus you need to refer finished/unfinished/deleteReason attribute
stepname you need to refer name attribute
1 Like
Thank you!