What I want to do is something like the following:
URL.com/path filter[1][$and][0][first_name][$contains]=J& filter[2][$and][0][last_name][$contains]=& filter[3][$and][0][date_entered][$gt]=2015-05-03T09:18:55-04:00& max_num=25&offset=0&filter[4][$and][0][websitesource_c][$equals]=websitename
the above example is what it would look like if I were to test it using a normal request(not Appian). So I would like to take that and use it with an Appian integration. Note that there could be a different number of "filter[]" parameters every time I call the integration.
So far haven't tried to do this myself. There is a requirement from the client to do this and would like to know if it's even possible before I start working on it. Any leads would be helpful.
Discussion posts and replies are publicly visible
If this just about dynamic parameters for POST URL. all the parameters are just appended to URL with ?name1=value1, so you can parameterize your whole URL for the integration object and build dynamic URL as per requirements.
Advantage of using parameters in appian integration object is that appian will encode parameters before appending to URL. so you have to handle the URL encoding as well.
Ha, how did I not see the expression mode option next to the url field. Thanks for this, this might be what I was looking for