Hi everyone,
I’m currently building a UiPath automation that:
- Reads data from an Excel file
- Takes a screenshot of a specific sheet or data
- Sends the image to a Telegram group using the HTTP Request activity
So far, the image is successfully sent to Telegram.
Now, I want to add a caption below the image, which includes a summary automatically generated from the Excel data. This summary is generated by UiPath using data from the Excel file (e.g., reading with Excel activities and processing the values).
My questions:
- How can I attach a dynamic caption to the image when sending it via HTTP Request?
- Can I just store the generated string in an Assign activity and pass it as a
caption
parameter in the HTTP Request? - Can I also use
parse_mode = Markdown
to format the caption nicely on Telegram?
Thanks in advance for your help!