i have created a scenario where i log in and extract all the device IDs added in my application. After extracting all device IDs with "JSON Path Extractor" i want to apply one configuration to all devices, using device IDs.
in JSON Path Extractor i am using JSON path as: $..deviceResponseList[*].id[0]
and Variable name: device_id
in next http request i am calling variable as: ${device_id}
Here if it extracts say 10 device IDs in last Http request its taking only first ID in Http request.
How should i pass every device_id extracted one after other from json path extractor in next http request sampler
NOTE: I am using Rest API for implementation.