I am trying to read my JSON result.
Here is my JsonResult
public class JsonResult
{
public string ResponseStatus;
public string Status;
p
If you want to send list of data List
then in JSON it should be in a form of array
Change the following JSON content
"Data": {"Status":"Pending",
"Date":"2017-02-23T17:22:26.2001954+05:30",
"Number":"9915933511",
"Amount":10.0,"Balance":137.714,
"TranId":"1126887","OPTId":"","RefId":""}
To
"Data": [{"Status":"Pending",
"Date":"2017-02-23T17:22:26.2001954+05:30",
"Number":"9915933511",
"Amount":10.0,"Balance":137.714,
"TranId":"1126887","OPTId":"","RefId":""}]