I want to pass raw json like,
{
"test": "" some values\n some more values\n ""
},
I want to keep double quotes that's why I am passing double quotes using escape character, but, I am receiving it with the escape characters in the string.
and also when using the testArea to pass this, the quotes are getting doubled like,
How can I pass it like that so, that I receive it like this {"some values\n some more values\n"} and not like this {some values\n some more values\n}