# Input in Flow possible

**URL:** https://community.homey.app/t/input-in-flow-possible/128884
**Category:** Flows
**Created:** [January 26, 2025, 11:07am UTC](https://community.homey.app/t/input-in-flow-possible/128884 "2025-01-26T11:07:54Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![JohanP](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/johanp/32/119002_2.png) [@JohanP](https://community.homey.app/u/JohanP)
#### Post date: [January 26, 2025, 11:07am UTC](https://community.homey.app/t/input-in-flow-possible/128884/1 "2025-01-26T11:07:54Z")

</div>

Ok, heard quite som people ask if you could answer qusetions or input something to your flow.  
Since you can only as ka Yes/No questions with a Pushmsg.

Trying to figure out the wat webhooks work I got an idea. Why not use webhooks to send data to Homey using…a webform ?  
Not sure if anyone has evetr tried, but I quick and dirty created this html and it works :

```auto
<!doctype html>
<html>
<body>
<form method="get" action="https://webhook.homey.app/YOUR_HOMEY_ID_HERE/testevent/">
TAG: <input type="text" name="tag" size="30">
 <input type="submit" value="submit"><br> 
</form>
</body>
</html> 

```

Then create a flow :

 ![afbeelding](https://us1.discourse-cdn.com/flex025/uploads/athom/original/3X/f/c/fc50c3e59e4ea4262df6dea6794dfb0277a43de1.png)

You could set avaiable, but with forms you can also create buttons to click, or a list to choose from.

My html knowledge is not that big, so yhis might need some finetuning (output page after submitting is horrible…)
