Hi I have a scenario in which i have 2 API's, I'm getting random number of dynamic vlaues from API 1 using a post processor. I need to process all these values in API2, for this requirement I'm using a V function to pass all the values in the URl by using a loop and counter. All the values are getting passed but some of the requests are getting HTTP status code 400, I need to exclude these requests which are getting 400 code.
Asked
Active
Viewed 33 times
1 Answers
0
You can do one of the following:
- Either amend your Post-Processor configuration to filter "unwanted" values
- Or remove the values from JMeter Variables using JSR223 PostProcessor and Groovy language
- Or investigate why the requests fail. One reason I can think of is that extracted responses contain characters which cannot be used in the URL string and they need to be url-encoded.

Dmitri T
- 159,985
- 5
- 83
- 133