ym1198
ym11982y ago

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 Serafim2y 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 User2y ago
Message Not Public
Sign In & Join Server To View
ym1198
ym1198OP2y 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
rubenf2y 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
ym1198OP2y 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

Did you find this page helpful?