https://stackoverflow.com/a/27637247/12820240
I saw above answer (https://stackoverflow.com/a/27637247/12820240) from another question, but my questions is, Is there anyway that that I can build large Json Request by adding comma separated with new data? Would appreciate for any help/direction. for ex:
{
{
"phoneNo": "9998885551",
"lastName": "john25",
"email": "azp25@gmail.com",
"firstName": "ricky25",
"mobileNo": "9820420420"
},
{
"phoneNo": "9998885552",
"lastName": "john26",
"email": "azp26@gmail.com",
"firstName": "ricky25",
"mobileNo": "9820420421"
},
{
"phoneNo": "9998885553",
"lastName": "john27",
"email": "azp27@gmail.com",
"firstName": "ricky27",
"mobileNo": "9820420422"
}
...
}
Thank you