REST Query Parameter with multiple values

Posted by Andrew Stalker on 12-Oct-2015 04:41

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?

All Replies

Posted by Srinivas Munigala on 12-Oct-2015 04:54

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

Posted by kevin_saunders on 13-Oct-2015 02:53

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):

community.progress.com/.../20575

This thread is closed