I have added regular expression extractor and able to obtain the taskid value, but when i have multiple task id's in same request, how to handle them ?
Here is my POST data: It's sending same taskid over and over again, instead of picking different taskid's from the payload request
[{"state":"COMPLETED","taskId":"345836","properties":[{"value":"2018-08-01T18:36:41.635Z","id":"deliveryDate"}]},{"state":"COMPLETED","taskId":"345836","properties":[{"value":"2018-08-01T18:36:41.635Z","id":"deliveryDate"}]}]
Instead of taking different Task ID's , its using the same Task ID's again and again.
Please suggest what needs to be done to resolve this issue