I am trying to pass JSON body via HTTP POST Method.
This is my below body
“{”“Name”“: “”” &Variable &“”“}”
I have done sample testing by assigning hardcode values and it worked fine.
Now the same body is throwing an exception and this is the output for the above body passed.
Body:- “{”“Name”“: “”” &Variable &“”“}”
O/P:- {“Name”: "Esmat Younes
"}
The JSON is not coming in a single line thus resulting in the below error. I wanted it pass it somewhat like {“Name”: “Esmat Younes”} instead of the above