Json post method
I am trying to create below Json Post method. Need your help
{
"unit_no": 1,
"unit_id": [
1,
2,
3
],
}
I tried
val jsonObject = JSONObject()
jsonObject.accumulate("unit_no",1)
val jsonArray = JSONArray()
jsonObject.accumulate("unit_id",jsonArray)
OP
{"visitor_id":1,"unit_id":[]}