So this is my Json String
{
"method_name": "WSP.CC.GET.CARRIER.INFO",
"calling_class": "com.fwdco.webservice.ScorpeoWebService",
"error_code": "0",
"contact_info": [
[
"name",
"email",
"phone"
]
]
}
if i want to insert
[
"man"
"[email protected]"
"534534646"
]
in contact_info, so that final json String is :
{
"method_name": "WSP.CC.GET.CARRIER.INFO",
"calling_class": "com.fwdco.webservice.ScorpeoWebService",
"error_code": "0",
"contact_info": [
[
"name",
"email",
"phone"
],
[
"man"
"[email protected]"
"534534646"
]
]
}
i tried to use splice and push function but it doesnt work. Help plz