I have an API:
Body:
{
"LegalMatterId": "0048c49d-4bf9-4u7768",
"FormId": "57d49f78-7f52-7687686786",
"answers": [
{
"fieldId": "Applicant-Date-Of-Last-Arrival",
"answer": "08/01/2022"
},
{
"fieldId": "Applicant-I-94-Number",
"answer": "123123sdf23"
}
]
}
I have to pass the entire input into Body of HTTP Activity
Can someone help me on these
ppr
(Peter Preuss)
2
Had you tried following:
create / init a string var with your Body JSON
HTTP Request Activity:

Could you please give in-detailed info 
Gokul001
(Gokul Balaji)
4
Hi @Vamsikrishna_Talam
Have a look on the thread
Regards
Gokul
tried but i am facing the following error
ppr
(Peter Preuss)
6
String starts with "
so:
"{""ABC"":""CDE""}"
or
"{'ABC':'CDE'}"
Your issue it seems to be similar like in this thread Making web API call, Method not found - #7 by marian.platonov
You may check it to see if it helps you.