Forum Discussion
tlikarish
7 years agoEmployee
Sorry this is kind of clunky at the moment. I’ll file some tickets to make it a little smoother in a future release. For now though, only triggering with a Groundplex via the on-premise or local override urls will accept x-www-form-urlencoded values and properly parse for you. One catch is that the values of the keys will be wrapped in arrays, so you’ll have to unpack them.
Here’s an example pipeline that demonstrates how it works.
greeter-example_2019_11_07.slp (2.6 KB)
You can invoke like this.
$ curl -H 'Authorization: XXX' <on-premise url here> -d 'greeting=hello,' -d 'name=Tim'
[
{"message":"hello, Tim"}
]
- gg4337 years agoNew Contributor III
Thanks, I will try this out.