Raw JSON structure

0
I'm working in rest api I have a raw json structure using post method I want to use 'custom request template'. How I can implement it, need help on this.
asked
1 answers
0

Hi, It is no different than a raw format, add the raw format as a string, and you can replace the values with parameters. You could also build a complete String of the request and pass it as one parameter.

{

    "Name" : {1},

    "Age" : {2},

    "city" : {3}

}

answered