I've built a Zapier App on Platform UI that calls a REST service on our domain. The app makes a GET request using a parameter name matchType that accepts a comma or semi-colon delimited array of values. i.e. "IND;HH"
In the app, I've created an Input field with a Dropdown with "Allows Multiple" that maps to matchType and uses the following for the Dropdown Source.
[{ "sample": "IND", "value": "IND", "label": "Individual - Match on first and last name and postal address" }, { "sample": "HH", "value": "HH", "label": "Household - Match on last name and postal address." } ]
My issue is, regardless of how many options I select in the Dropdown, only the first choice makes it into the query string. What I'm expecting is multiple parameters concatenated with a comma because that seems to be what the Zapier documentation suggests. ex: matchtype=IND,HH
Any help would be greatly appreciated.