Following is the response: -
{
"errors": "",
"data": [
{
"links": [],
"dob": "2013100600",
"expireDate": "2018090600",
"name": "Samuel",
"amount": "500000.0",
"details": [
{
"accNo": "1234",
"deposit": "300",
"ccy": "USD",
},
{
"accNo": "1235",
"deposit": "700",
"ccy": "EURO",
},
{
"accNo": "1236",
"deposit": "100",
"ccy": "INR",
},
]
}
],
"paging": null
}
I want to extract and set them in their existing fields on the screen. Say,
Name --> Samuel
Amount --> 500000
Details --> "accNo": "1234",
"deposit": "300",
"ccy": "USD",
.
.
.
and so on. Details on screen is a table which is having columns named as
AccountNo Deposit Currency
1234 300 USD
1235 700 EURO
1236 100 INR