i am new to web services, i want to pass JSON object as input parameter to POST method and return JSON object from that method.
Input-
{
"RecognizeInput":
{
"SignatureString":""
}
}
Output-
{
"RecognizeOutput": {
"Status": "",
"Message": "",
"NumMatches": "2",
"IvMatchedProducts": {
"IvMatchedProduct": [
{
"Name": "prod1",
"Description": "prodDecs",
"ThumbnailImg": "",
"URL": "",
"Rating": "",
"Price": ""
},
{
"Name": "prod2",
"Description": "prodDecs",
"ThumbnailImg": "",
"URL": "",
"Rating": "",
"Price": ""
}
]
}
}