Hi,
im using an adaptive card in a flow, which was working until recently and now the flow succeed to run but the adaptiv card is empty, any ideas?
the JSON:
{
"type": "AdaptiveCard",
"body": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Please approve or decline the document"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"items": [
{
"type": "TextBlock",
"text": "@{triggerBody()?['Approver']?['DisplayName']} a file was assigned for your review",
"wrap": true
},
{
"type": "TextBlock",
"text": "before sending to customer"
},
{
"type": "FactSet",
"facts": [
{
"title": "File Name",
"value": "@{triggerBody()?['{FilenameWithExtension}']}"
},
{
"title": "Submmited By",
"value": "@{triggerBody()?['Editor']?['DisplayName']}"
}
]
}
],
"width": "stretch"
}
]
}
]
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "Approve",
"url": "https://prod-28.westeurope.logic.azure.com/workflows/b561e146884149989480b5b701343717/triggers/manual/paths/invoke/Response/Approve/Id/@{triggerBody()?['ID']}?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=LrQRSDnYMNN2-Z4AL0aA5L3eiQ2iNmHBjX5FkXsNl2s\""
},
{
"type": "Action.OpenUrl",
"title": "Link to Document",
"url": "@{triggerBody()?['{Link}']}"
},
{
"type": "Action.OpenUrl",
"title": "Comments submmited",
"url": "https://prod-28.westeurope.logic.azure.com/workflows/b561e146884149989480b5b701343717/triggers/manual/paths/invoke/Response/Reject/Id/@{triggerBody()?['ID']}?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=LrQRSDnYMNN2-Z4AL0aA5L3eiQ2iNmHBjX5FkXsNl2s\""
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0"
}