W
Windmill13mo ago
ym1198

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
Tiago Serafim
Tiago Serafim13mo ago
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#triggering
Webhooks | Windmill
Webhooks are a way to interact with Windmill using standard web technologies.
Unknown User
Unknown User13mo ago
Message Not Public
Sign In & Join Server To View
ym1198
ym119813mo ago
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 ?
rubenf
rubenf13mo ago
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 ?
ym1198
ym119813mo ago
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