I have a Java Rest API @PUT. Which is receiving the json data as shown in below format
["name1,scope1,value1","name2,scope2,value2"]
I am getting this value in my Java API method as
(String someList)
someList will contain ["name1,scope1,value1","name2,scope2,value2"]
How to get these values ("name1,scope1,value1" and "name2,scope2,value2") in String array?