Recommendations for using array query parameters in visual builder
Summary
How to bypass unique value constraint on URL parameters in VBCSContent
I share this information with the hopes that it will save the reader some time or frustration and to see if there is any possible change in the future.Get query parameters are a constant pain because there are several ways to implement them. I ran into an issue yesterday calling a process cloud / integration cloud service "retrieve multiple process instances" where I needed to send to craft a URL like
https://base-url:ic/api/process/v1/processes?processState=COMPLETED&processState=FAULTED_RECOVERABLE
When I tried to add these URL parameters I received the error "processState is not unique". Considering how OIC/PCS impelements their query parameter arrays I would think this restriction would be removed since in many cases they won't be unique.
2