Reputation: 13
The code below is workable in Microsoft Teams Desktop version. But the button unable to show in Teams mobile app.
Anyone can help ? ty pls refer below photo attachment
{"@type": "MessageCard",
"title": "System Alert",
"text" : "Network Error",
"themeColor": "E81123",
"potentialAction": [
{
"@type": "ActionCard",
"name": "ActionCardName",
"inputs": [
{
"@type": "TextInput",
"id": "comment",
"title": "Enter your comment",
"isMultiline": "true"
}
],
"actions": [
{
"@type": "HttpPOST",
"name": "OK",
"target": "https://ptsv2.com/t/ANA/post",
"body": "comment={{comment.value}}"
}
]
}
]
}
Upvotes: 0
Views: 95
Reputation: 3581
We call that feature Actionable Messages and I'm afraid that's not supported on mobile versions of Teams yet. It's definitely on the roadmap but we don't have an ETA yet.
Upvotes: 1