I have got a simple ajax response and I am trying to extract the value of orderId and orderItemId from the below response. I tried json path post processor as well as regular expression extractor.
I gave like this in the post processor
"orderId": ["(.+?)"] template-$1$ Match No-1, in the Regular Expression. But it is not extracting the value.
/*
{"orderId": ["1389104"],"orderItemId": ["7900094"],
}
*/
Any idea why? I have extracted more complicated values using regex. This one is a bit strange.Is there any difference if it is an ajax response?