Instead of putting in your json variables as parameters, take the json exactly as you see in postman and put in the body of the request. See if that works.
Once you close the wizard and look at the HttpClient properties, you’ll see Body under options. Put your payload here. I don’t see that option in the wizard.
Hi @ronanpeter, I tried to put double quotations but it prompted a different error, I don’t think quotations are needed when supplying the value of the parameters.
I also tried to add the parameters one by one in the properties editor and this is what I get as a response:
The beginning single quote starts the string, no quotes around the key of the key/value pair (because they’re already included as part of the overall string), and double quotes around the value of the key/value pair. Those will be changed to single quotes when processed.
Hi. I found a solution to this from a similar case:
So the Body(String) shouldn’t have a single space, and everything should be double quoted e.g. “”“requisitionNumber”“:”“123"”,““requisitionDescription””:““sample Description””"
Thanks Troy,
Mc