How can I send a Rest message request where the same query parameter is used more than once?
I need to send a post request where the query parameter "interaction-id" is used multiple times. I've tried using rest.setQueryParameter("interaction-id", "value"), but that just overrides the same value instead of appending it to the request multipl...