Welcome, and yeah, this kind of flow can be tricky at first but totally doable, I’ve actually built something super similar.
Mine runs in Slack, but the idea is the same. Basically, I have the bot reply to me, then wait for my response in the same thread. Once I reply, it feeds that back into the AI, which asks a follow-up question, and waits again. After the final answer, it passes everything to another AI agent to summarise and then saves it (Notion, database, anywhere).
For Telegram, since you can only have one trigger, what you can do is:
Store a little bit of state — like track where the user is in the convo (e.g. are they answering Q1 or Q2).
After the first message comes in, send Question 1.
Use a Wait node or some condition logic to listen for the next message from that user.
Then ask Question 2.
After their second reply, send it all to the AI for summarizing and send to Notion.
with Telegram the one-trigger limitation, but with a bit of logic and memory (chat ID, step tracking, etc), it works. well
had issue with uploading my json example, but it’s here if u want to see the logic inside.
Hope this helps :), ill share on here via the code ndoe soon once it’s fixed.