Hi guys,
I’m trying to build a workflow that receives payment data from my bank (through a webhook) and then send a message to our team to confirm if they want to add this payment into our expense tracking. In order to do so, we need to add additional information such as expense description and category.
So I built this first scenario that receives the data from my bank and sends a message on Telegram to the person responsible for our expenses asking if she wants to add this payment into our expense tracking (on google sheets). I also store the data using message id as the primary key:
This is the message:
So once the user clicks on “Sim” (yes in Portuguese), I capture this through callback query data and it starts another scenario (which is still incomplete):
So, in this case, I need to ask the user to add the description and later the category, but I don’t know how to tie the description response into the original message so I can add the data in the storage to later put in the google sheets.
Any idea on how to build a back and forth conversation on Telegram and keep adding the information into my storage would be great!
Thanks
Doug