Can Windmill flow have inputs as in `query` params instead of `body` ?
Currently the inputs to flows are sent in
body
of webhook of flow, can we send it in query
5 Replies
Do you mean using a
GET
request? You can use the payload
arg encoded in base64, see https://docs.windmill.dev/docs/core_concepts/webhooks#triggeringWebhooks | Windmill
Webhooks are a way to interact with Windmill using standard web technologies.
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
this does not work async webhook trigger ?
it seems so
I am getting 405 method not allowed for GET in both async and sync
@rubenf any hint ?
we do not support get for flow for now
it's very against the semantic of http to do side-effectful operations in GET. What's your use-case ?
Someone was trying to use AMP email and was not able to send POST body params (not sure if ay limitations on that tool part), so i was asked if GET is permitted
this makes sense though