Azure AI Bot Service
An Azure service that provides an integrated environment for bot development.
840 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
My Adaptive card have multiple Submit buttons and one of them is:
{
"type": "Action.Submit",
"title": "Troubleshoot WiFi",
"data": "Troubleshoot WiFi"
}
This works file with webchat and emulator but not working in MS Teams
Please use below code
{
"type": "Action.Submit",
"title": "Troubleshoot WiFi",
"data": {
"msteams": {
"type": "imBack",
"value": "Troubleshoot WiFi"
}
}
}