I am making an HTTP request using Apache JMeter.
The response has the following format:
HTTP/1.1 100 Continue
HTTP/1.1 200 OK x-powered-by: Express access-control-allow-origin: * access-control-allow-methods: HEAD, POST, PUT, GET, OPTIONS, DELETE access-control-allow-headers: origin, content-type, X-Auth-Token, Tenant-ID, Authorization content-type: application/json; charset=utf-8 content-length: 24 etag: W/"18-8MkH0L5c1ZW7PPuEY1rZ3jKFme0" date: Thu, 08 Apr 2021 12:28:37 GMT x-envoy-upstream-service-time: 90 server: envoy
{"id":"548b23a3.4f6a4c"}
I need a way to extract the JSON id value to a variable to make another one request.
JSON extractor needs a pure JSON format as response but in my case i need to skip all these headers from the body response.
Any ideas how could i make it with the Apache JMeter?