How to pass below value into Body of HTTPS Activity

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

Had you tried following:

create / init a string var with your Body JSON

HTTP Request Activity:

grafik

Could you please give in-detailed info :slightly_smiling_face:

Hi @Vamsikrishna_Talam

Have a look on the thread

Regards
Gokul

tried but i am facing the following error

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.