all. This is the response I got back after a GET request:
{"id":30,
"name":"ABC, Inc.",
"clientRiskAssessment":{"clientId":30,
"generalScore":70,
"federalScore":45,
"internationalScore":20,
"updatedDate":"0001-01-01T00:00:00+00:00",
"url":"https://example.com/WebPortal/Config/Tax/index.html?IsFrame=true#/app/questionnaire-response/GeneralTaxClientQa/abd8d723-dc4a-e711-811b-00505683008b",
"formattedDate":"01/01/0001"}}
I can get the whole value of the "url" by using $..url in JSON Extractor - JSON Path Expressions in JMeter. Could anyone please give me a hint on how to get a tokens at the end of the url only and not the whole url value? This is the token I would like to extract at the end of the url: abd8d723-dc4a-e711-811b-00505683008b Thank you.
.replaceFirst(".*/", "")
– Wiktor Stribiżew.replaceAll
since only one match is expected. Anyway, both will work. – Wiktor Stribiżew