Using JSON Extractor, extracted multiple values from response body.
Debug Sampler -> For eg shows these 3 values
ID_1=212
ID_2=211
ID_3=225
How to use each of these in the next HTTP Post Request? Like how to use one value for each run?
POST request body
{"id"={$ID}} -> doesn't work.
However, {"id"={$ID_1}}, {"id"={$ID_2}}, {"id"={$ID_3}}
individually works.I want to avoid manually changing the POST body request everytime.