Home > database >  I want to extract a value from a response and use it in the next request
I want to extract a value from a response and use it in the next request

Time:08-18

I want to extract name from here

{"name":"morpheus","job":"leader","id":"938","createdAt":"2022-08-16T18:37:45.745Z"}

i used "name":"(.*?)", as a regex but when check the reponse i found it as ${name} not as morpheus

CodePudding user response:

enter image description here

enter image description here

The Regular Expression Extractor should also work if you configure it like this:

enter image description here

  • Related