-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we have file attachment within the adaptive card? #237
Comments
If the file is available at a URL that the user can access, you could use an {
"type": "Action.OpenUrl",
"title": "Download",
"url": "https://url-to-file"
} You could also use markdown in a TextBlock to achieve the same thing: {
"type": "TextBlock",
"text": "Click [here](https://url-to-file)To download"
} |
@matthidinger looking at hooking up an adaptive card with Power Automate to send get a response from a user in Teams. What I'm after is can I have in the Adaptive Card a way for the user to attach an attachment and then the response via the adaptive card send the attachment to a SharePoint specific list row. Appreciate your time. |
Greeting dear community, I hope you are doing well and continue coding 🚀 Our team and I, are facing the same issue. Long story short, we have a service that generates report files, the types of those reports are :
Regarding the image report, we created a POST on Teams' channel by transforming the image to base64 format. In more detail, we accomplish that by executing a POST HTTP request to the MS Teams webhook mechanism using the JSON below as the HTTP body.
Is there any efficient way to include also the Excel and CSV reports in the POST on Teams' channel ?? I remain at your disposal for any ideas, comments, or proposals. Thank you and appreciate your time and effort in advance 🙏 |
No description provided.
The text was updated successfully, but these errors were encountered: