[SOLVED] How to escape double quotes from jsonpath string?

Or you could probably use the .replace("\"'","") method after the JSON transform e,g.

val String response = transform("JSONPATH", "$.status", json).replace("\"","")

1 Like