HttpRequest - Json Creation POST Body

This one is working… I don’t know why it is working with double quotes only…

“{”“name”“:”“” + emp_name+ “”“,”“salary”“:”“” + emp_salary+ “”“,”“age”“:”“” + emp_Age+ “”“}”

Sorry for all the confusion…
Replace myJson activity value with the above and it is working…

The change is → replace all the single quotes with two double quotes
i.e., ’ → “”

5 Likes