Hi! Sorry for the late reply
The thing is, in data you only get the IDs of the selected answers, while the actual text values are stored deeper.
You need to use rendered_data β the value field contains the readable text.
You can simply check this by searching through the variables.
The answers are ordered the same way as the form fields:
{{1.data.row.rendered_data.[0].value}} β first answer
{{1.data.row.rendered_data.[1].value}} β second answer
{{1.data.row.rendered_data.[2].value}} β third answer
If the dropdown is only coughing up IDs on your end, I usually just drill into the form_response fields until I hit the options array and grab the text there. It feels a bit like digging for loose change in the couch, but it works. Once you map that text to your Telegram message, everything shows up clean.