Camunda user task handle reject processing

Consider a scenario where i have human task which gets assigned 3 levels of approvers using marker functionality.

Reference Camunda process :-

1st approver is Bob, 2nd is William and 3rd is Rob.

Bob approves the 1st level task and 2nd level approver William rejects the task. So 3rd level task for Rob should not get generated and process should continue in reject flow.

How can i handle this use case ?

@Ganesh1 You can use Multi-instance completion condition property to configure this. For example,

#{status=='reject'}

awesome …thanks for your reply !!