Ex:-
{
“email":"abc@gmail.com”
}
It’s a json format how can we convert in string in http request body
What’s the expected output?
Normally API calls requires json format. If you want the data in string format, you can use Deserialze Json activity to deserialze it your desired format.
Welcome to the community
You can add double double quoted to escape a double quote
So your json string to give would be
"{
""email"":""abc@gmail.com""
}"
Cheers
3 Likes