Skip to main content
Community site session details

Community site session details

Session Id : 1yNNuGvntEPV8UzjVhnpN5
Power Automate - Building Flows
Unanswered

Adaptive Cards - Binding Data

Like (0) ShareShare
ReportReport
Posted on 24 Apr 2021 10:35:16 by 227

Hi,

 

I'm just programming an adaptive card containing a factset.

{
 "body": [
 {
 "type": "TextBlock",
 "size": "Medium",
 "weight": "Bolder",
 "text": "New Mail"
 },
 {
 "type": "TextBlock",
 "text": "New Mail received",
 "wrap": true
 },
 {
 "type": "FactSet",
 "facts": [
 {
 "title": "From",
 "value": "Sender@outlook.com"
 },
 {
 "title": "Received",
 "value": "2021/04/23"
 },
 {
 "title": "File",
 "value": "[Adaptive Cards](https://adaptivecards.io)"
 }
 ]
 }
 ]
}

 

I was just wondering if I can provide the data seperately as suggested in Microsoft Docs.

{
 "type": "AdaptiveCard",
 "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
 "version": "1.2",
 "$data": {
 "properties": [
 {
 "key": "From",
 "value": "Sender@outlook.com"
 },
 {
 "key": "Received",
 "value": "2021/04/23"
 },
 {
 "key": "File",
 "value": "[Adaptive Cards](https://adaptivecards.io)"
 }
 ]
 },
 "body": [
 {
 "type": "TextBlock",
 "size": "Medium",
 "weight": "Bolder",
 "text": "New Mail"
 },
 {
 "type": "TextBlock",
 "text": "New Mail received",
 "wrap": true
 },
 {
 "type": "FactSet",
 "facts": [
 {
 "$data": "${properties}",
 "title": "${key}:",
 "value": "${value}"
 }
 ]
 }
 ]
}

This solution works perfectly in adaptivecards.io but it does not work in Teams.

 

Do you have any recommendations how to use the binding approach?

 

Best regards

Florian

  • ramon_glez Profile Picture
    6 on 29 Nov 2021 at 12:17:29
    Re: Adaptive Cards - Binding Data

    Did you find any solution?

     

    I just found this workaround:

    link 

     

    regards

    Ramon

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 497 Super User 2025 Season 1

#2
David_MA Profile Picture

David_MA 436 Super User 2025 Season 1

#3
Riyaz_riz11 Profile Picture

Riyaz_riz11 244 Super User 2025 Season 1

Loading complete