1
votes

I'm testing an api in Jmeter

When passing the url in postman I get proper response enter image description here

But when use the same in Jmeter I get error enter image description here

The path I'm using:

enter image description here

1

1 Answers

2
votes

Your request payload contains characters which are not allowed to be present in URL so you need to wrap what you put in "Path" section of the HTTP Request sampler into __urlencode() function

More information: Apache JMeter Functions - An Introduction