REST Post multiple parameters with same name
Hi all,
I'm trying to send a REST POST request with a multipart/form-data content.
In particular, I need to send the same parameter (same name) with multiple values, but everytime I try to add the parameter I get the 'Property name exists!' alert.
I've tried to solve it by means of different methods already published here, such us:
1. Add a 'Multi-Value Delimiter': I tried to add a delimiter (e.g.: |) and include all the different values within one parameter: value1|value2|value3...
2. Disable Encoding to that parameter
3. Include a comma-separated list: $[value1,value2,value3...]
Even though the previous methods don't present any errors, when I send the request the endpoint doesn't seem to 'understand' that there are multiple values included in that parameter. And even though I send several values, the API only gets the first one.
Do you know if there is any other solution to include several parameters with the same name?