I have to pass a 2d integer array to get REST call.
Example:[[1,2,3], [5,10,11]]
I can pass it by entering data separately into the parameter like
Example: http://localhost:1136/demo?x=3,4,5&x=10,11,12
But I want it to be like
?x=[[1,2,3], [5,10,11]]
Any suggestion