I want to pass an array as parameter in okhttp.I just tried like
RequestBody formBody = new FormBody.Builder()
.add("customerId", "0000000003")
.add("storeId","rayban")
.add("items[]",array.toString())
.build();
I want to pass the items array to the form builder . but i cant pass the array to the api.how can i do this.how to pass an array to okhttp.