Hi all, Im new to use power automate.
I used power automate to post an adaptive card to Microsoft team when there's a new sharepoint submission. However, Im unable to post the adaptive card to Teams, error shows as: We're sorry, this card couldn't be displayed.
Below is the JSON code I used
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "You got a new highlight list!",
"wrap": true,
"fontType": "Default",
"weight": "Bolder",
"color": "Dark",
"size": "Large",
"horizontalAlignment": "Left"
},
{
"type": "TextBlock",
"text": "Hi, name",
"wrap": true,
"spacing": "Medium",
"size": "Medium",
"weight": "Bolder"
},
{
"type": "TextBlock",
"text": "A highlight is triggered on date. Please take action to view and complete the highlight request.\n\nYou may update your response and completion status at below",
"wrap": true
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "View Highlight Details",
"url": "@{triggerOutputs()?['body/{Link}']}"
}
]
},
{
"type": "Input.Text",
"placeholder": "Placeholder text",
"label": "Owner Updare",
"isRequired": true,
"errorMessage": "Error"
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "Yes",
"value": "Yes"
},
{
"title": "No",
"value": "No"
}
],
"placeholder": "Placeholder text",
"errorMessage": "Error",
"label": "Completion Status",
"isRequired": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "SUBMIT",
"style": "positive"
}
]
}

Report
All responses (
Answers (