ms teams message card not working with action
1 TopicAction button is not displaying using Message Cards - MS Teams Outgoing webhook
Hello All, I have followed the below steps in the dev environment for MS Teams App 1) created a custom connector 2) Configure custom connector in one channel 3) Using Postman I've posted Message cards. (Message card has Potential action and Action card for post data) 4) I am receiving an alert on the channel when I post data. (URL is MS teams incoming webhook) 5) I am able to see content but Action button is not visible in MS teams channel I knew that MS teams support only Message card but here I am receiving the alert in the channel but unable to see buttons in it. Can anyone suggest more on this? JSON code sample { "@type": "MessageCard", "@context": "http://schema.org/extensions", "themeColor": "0076D7", "summary": "Nadir executed action in VO", "sections": [{ "activityTitle": "Larry Bryant created a new task", "activitySubtitle": "On Project Tango", "activityImage": "https://teamsnodesample.azurewebsites.net/static/img/image5.png", "facts": [{ "name": "Assigned to", "value": "Unassigned" }, { "name": "Due date", "value": "Mon May 01 2017 17:07:18 GMT-0700 (Pacific Daylight Time)" }, { "name": "Status", "value": "Not started" }], "markdown": true }], "potentialAction": [{ "@type": "ActionCard", "name": "Add a comment", "inputs": [{ "@type": "TextInput", "id": "comment", "isMultiline": false, "title": "Add a comment here for this task" }], "actions": [{ "@type": "HttpPOST", "name": "Add comment", "target": "http://..." }] }, { "@type": "ActionCard", "name": "Set due date", "inputs": [{ "@type": "DateInput", "id": "dueDate", "title": "Enter a due date for this task" }], "actions": [{ "@type": "HttpPOST", "name": "Save", "target": "http://..." }] }, { "@type": "ActionCard", "name": "Change status", "inputs": [{ "@type": "MultichoiceInput", "id": "list", "title": "Select a status", "isMultiSelect": "false", "choices": [{ "display": "In Progress", "value": "1" }, { "display": "Active", "value": "2" }, { "display": "Closed", "value": "3" }] }], "actions": [{ "@type": "HttpPOST", "name": "Save", "target": "http://..." }] }] }Solved6.3KViews0likes4Comments