Hello,
I have a rest service at /test where i want to pass an id so in the URI id write /test?id=123.
However i want to get more than one id like /test?id=123&id=456&id=789.
I was assuming this would change the progress parameter i'm mapping it to to need to be an extent, but this doesn't work
Is it possible to actually pass a URI in this format?
If you are mapping it to an Extent, you need to pass the data in below format:
/test?Ext=[1,2,3]
If you are mapping them to independent parameters, you need to pass the data in below format:
/test?id=123&id=456&id=789
The mapping needs to be adjusted in order to 'know' about the additional parameters as explained in Mike Fechner's reply to my query in this post (see the image):