• About
    • Who We Are
    • What We Do
    • The Management Team
    • Global
  • Service
    • Microsoft Dynamics 365 CRM Development
    • Cloud Technology Services
    • Business Central Development Services
    • Business Intelligence Development Services
    • Enterprise Content Search Services
  • Solutions
    • Business Systems Consulting
    • Enterprise Resource Planning (ERP)
      • Wiise Business Central
    • Customer Engagement (CRM) & Marketing Automation
    • Rapid Application Development (PowerApps)
      • HSE App by ECLEVA
    • Process Automation (RPA)
    • Business Intelligence (Power BI)
  • Sectors
    • Corporate & SME
    • Not-For-Profit
    • Construction
    • Financial Services
    • Education
    • Manufacturing
    • Government
  • Customer Stories
  • Insights
    • Blog
    • News
    • Videos
  • Contact
    • Contact ECLEVA
    • Customer Support
+61 2 9467 9300
Get in touch
  • About
    • Who We Are
    • What We Do
    • The Management Team
    • Global
  • Service
    • Microsoft Dynamics 365 CRM Development
    • Cloud Technology Services
    • Business Central Development Services
    • Business Intelligence Development Services
    • Enterprise Content Search Services
  • Solutions
    • Business Systems Consulting
    • Enterprise Resource Planning (ERP)
      • Wiise Business Central
    • Customer Engagement (CRM) & Marketing Automation
    • Rapid Application Development (PowerApps)
      • HSE App by ECLEVA
    • Process Automation (RPA)
    • Business Intelligence (Power BI)
  • Sectors
    • Corporate & SME
    • Not-For-Profit
    • Construction
    • Financial Services
    • Education
    • Manufacturing
    • Government
  • Customer Stories
  • Insights
    • Blog
    • News
    • Videos
  • Contact
    • Contact ECLEVA
    • Customer Support
+61 2 9467 9300
Get in touch
  • About
    • Who We Are
    • What We Do
    • The Management Team
    • Global
  • Service
    • Microsoft Dynamics 365 CRM Development
    • Cloud Technology Services
    • Business Central Development Services
    • Business Intelligence Development Services
    • Enterprise Content Search Services
  • Solutions
    • Business Systems Consulting
    • Enterprise Resource Planning (ERP)
      • Wiise Business Central
    • Customer Engagement (CRM) & Marketing Automation
    • Rapid Application Development (PowerApps)
      • HSE App by ECLEVA
    • Process Automation (RPA)
    • Business Intelligence (Power BI)
  • Sectors
    • Corporate & SME
    • Not-For-Profit
    • Construction
    • Financial Services
    • Education
    • Manufacturing
    • Government
  • Customer Stories
  • Insights
    • Blog
    • News
    • Videos
  • Contact
    • Contact ECLEVA
    • Customer Support
  • About
    • Who We Are
    • What We Do
    • The Management Team
    • Global
  • Service
    • Microsoft Dynamics 365 CRM Development
    • Cloud Technology Services
    • Business Central Development Services
    • Business Intelligence Development Services
    • Enterprise Content Search Services
  • Solutions
    • Business Systems Consulting
    • Enterprise Resource Planning (ERP)
      • Wiise Business Central
    • Customer Engagement (CRM) & Marketing Automation
    • Rapid Application Development (PowerApps)
      • HSE App by ECLEVA
    • Process Automation (RPA)
    • Business Intelligence (Power BI)
  • Sectors
    • Corporate & SME
    • Not-For-Profit
    • Construction
    • Financial Services
    • Education
    • Manufacturing
    • Government
  • Customer Stories
  • Insights
    • Blog
    • News
    • Videos
  • Contact
    • Contact ECLEVA
    • Customer Support

Blog

Home Uncategorized Adaptive Cards – open yourself to more content
IT

Adaptive Cards – open yourself to more content

July 10, 2020
Enhance User Engagement with Adaptive Cards 

In today’s digital landscape, where content drives engagement, businesses are constantly seeking innovative ways to deliver interactive and dynamic content across multiple platforms. Microsoft Adaptive Cards offer a powerful solution, enabling seamless integration and a consistent user experience across various applications. 

What Are Adaptive Cards? 

Adaptive Cards are a JSON-based UI framework that allows developers to create rich, interactive content adaptable to any platform. Designed to blend naturally with host applications, Adaptive Cards ensure that the content matches the platform’s native look and feel. For example, a contact card in Dynamics 365 can seamlessly appear in Microsoft Teams with Teams’ distinctive interface. 

Popular Platforms Supporting Adaptive Cards: 
  • Microsoft Teams 
  • Outlook Actionable Messages 
  • Bot Framework Webchat 
  • Cortana Skills 
  • Windows Timeline 
  • Windows Notifications 

As Microsoft states, “Users win because everything feels familiar. Host apps win because they control the user experience. And Card Authors win because their content gets broader reach without any additional work.” 

Step-by-Step Guide: Creating and Sending Adaptive Cards in Outlook with Power Automate 

Step 1: Design Your Adaptive Card 

 

  • Visit https://adaptivecards.io/designer/ to create your card by dragging and dropping elements or customizing existing templates. 
  • Select Outlook Actionable Messages as the host app for seamless integration. 
MicrosoftTeams-image-10
Sample JSON for an Adaptive Card: 
{
  “type”: “AdaptiveCard”,
  “inputNecessityIndicators”: “requiredInputs”,
  “displayInputSuccessIndicators”: true,
  “version”: “1.0”,
   “body”: [
    {
      “type”: “TextBlock”,
      “size”: “Medium”,
      “weight”: “Bolder”,
      “text”: “Please take a moment to answer one simple question by clicking either link below.”,
      “horizontalAlignment”: “Center”
    },
    {
	  “type”: “TextBlock”,
      “text”: “How was your experience?”
    },
    {
      “type”: “Input.ChoiceSet”,
      “id”: “SingleSelectVal”,
      “isRequired”: true,
      “errorMessage”: “Please select one of the above option”,
      “style”: “expanded”,
      “value”: “1”,
      “choices”: [
         {
           “title”: “Good – I’m satisfied”,
           “value”: “1”
         },
         {
           “title”: “Bad – I’m unsatisfied”,
           “value”: “2”
        }
       ]
    },
    {
     “type”: “Input.Text”,
     “placeholder”: “Comment”,
     “style”: “text”,
     “maxLength”: 0,
     “isRequired”: true,
     “errorMessage”: “Required”,
     “id”: “SimpleVal”
    }
   ],
  “actions”: [
    {
    “type”: “Action.Http”,
    “title”: “Submit”,
    “url”: “https://prod-29.southeastasia.logic.azure.com:443/workflows/b9277c7040154322b45dbf536ba0f6ac/triggers/manual/paths/invoke?api-version=2016-06-01",
    “id”: “submit”,
    “style”: “positive”,
    “method”: “POST”,
    “body”: “{\”choices\”:\”{{SingleSelectVal.value}}\”,\”comment\”:\”{{SimpleVal.value}}\”}”,
      “headers”: [
      {
        “name”: “Authorization”,
        “value”: “”
      },
      {
        “name”: “Content-type”,
        “value”: “application/json”
      }
     ]
    }
 ]
}
Step 2: Automate Email Delivery with Power Automate 
  • In Power Automate, create a new flow with a trigger (e.g., manual or automated). 
  • Add a Compose action and paste the Adaptive Card JSON. 
  • Use the Send an Email (V2) action and insert the Adaptive Card within HTML tags: 
<script type="application/adaptive card+json">
</script>
Step 3: Capture Responses with Power Automate 
  • Create a new flow with the When an HTTP request is received trigger. 
  • Define the JSON schema to collect responses: 
{ 
  “choice”: “text”, 
  “reason”: “text” 
}
  • Add two variables to store the response. You can use the snippet below to extract the response. 
split(triggerBody()?[‘choices’],’,’) 
split(triggerBody()?[‘reason’],’,’)
  • Send confirmation notifications and update the Adaptive Card with the response using the Response action. 
Benefits of Using Adaptive Cards for Business Communication 
  • Cross-Platform Compatibility: Deliver content seamlessly across Microsoft Teams, Outlook, and more. 
  • Enhanced User Engagement: Simplify interactions with intuitive and responsive design. 
  • Streamlined Automation: Integrate with Power Automate for dynamic workflows and real-time feedback collection. 
CARD-UPDATE-IN-BODY = True
Conclusion 

Adaptive Cards empower businesses to create dynamic, interactive content that enhances user engagement across multiple platforms. By integrating Adaptive Cards with tools like Power Automate, organizations can streamline workflows and improve communication efficiency. Start leveraging Adaptive Cards today to transform how you connect with your audience! 

Have ideas to improve Adaptive Cards or innovative use cases? Share your thoughts in the comments below or contact ECLEVA to explore how we can bring your ideas to life! 

134
5 ways MS Power Platform gives your company a significant competitive advantage5 ways MS Power Platform gives your company a significant competitive advantageJuly 13, 2020
Getting Customer feedback is important! Acting on it is vital! Here is how ECLEVA is using insights to embed a Customer Centric mindset.July 14, 2020Getting Customer feedback is important! Acting on it is vital! Here is how ECLEVA is using insights to embed a Customer Centric mindset.
Categories
  • Blog (38)
    • AI (1)
    • Business (8)
    • Business Intelligence​ (3)
    • Digital Transformation (7)
    • IT (21)
    • Marketing (1)
  • News (18)
    • Business (11)
    • IT (5)
    • Sales (2)
  • Video (34)
    • Business (29)
    • Business intelligence (3)
    • Digital transformation (18)
    • IT (23)
    • Process automation (2)
Recent Posts
  • Developing Intelligent Supply Chains with Microsoft Dynamics 365 for Supply Chain Management
  • Integrating Power Apps with Sharepoint for Document Management Solutions
  • Integrating Dynamics 365 with Microsoft Azure for Scalable Cloud Solutions
  • Integrating Power BI with Dynamics 365 for Powerful Business Insights
  • How to build a Business Case for Robotic Process Automation (RPA)

 

ECLEVA
© ECLEVA 2025.

All rights reserved.
Privacy Policy

Solutions

Business Systems Consulting

Customer Engagement (CRM) & Marketing Automation

Rapid Application Development (PowerApps)

Process Automation (RPA)

Business Intelligence (Power BI)

Sectors

Corporate & SME

Not-for-profit

Construction

Financial Services

Education

Contact

Address:

100 Walker St.
North Sydney 2060

Phone:

+61 2 9467 9300

Address:

401-402, R M Arcade, Near Goverdhan Park, Taxsila School Road, Vastral, Ahmedabad 382418

Phone:

+91 98244 60130

Website:

www.ecleva.com

#integrio_button_681da0fd452ad .wgl_button_link { color: rgba(255,255,255,1); }#integrio_button_681da0fd452ad .wgl_button_link:hover { color: rgba(12,90,219,1); }#integrio_button_681da0fd452ad .wgl_button_link { border-color: rgba(255,255,255,1); background-color: rgba(49,49,49,0.01); }#integrio_button_681da0fd452ad .wgl_button_link:hover { border-color: rgba(255,255,255,1); background-color: rgba(255,255,255,1); }#integrio_button_681da0fd452ad.effect_3d .link_wrapper { color: rgba(255,255,255,1); }#integrio_button_681da0fd4780f .wgl_button_link { color: rgba(255,255,255,1); }#integrio_button_681da0fd4780f .wgl_button_link:hover { color: rgba(12,90,219,1); }#integrio_button_681da0fd4780f .wgl_button_link { border-color: rgba(255,255,255,1); background-color: rgba(49,49,49,0); }#integrio_button_681da0fd4780f .wgl_button_link:hover { border-color: rgba(255,255,255,1); background-color: rgba(255,255,255,1); }#integrio_button_681da0fd4780f.effect_3d .link_wrapper { color: rgba(255,255,255,1); }#integrio_button_681da0fd50436 .wgl_button_link { color: rgba(49,49,49,1); }#integrio_button_681da0fd50436 .wgl_button_link:hover { color: rgba(255,255,255,1); }#integrio_button_681da0fd50436 .wgl_button_link { border-color: rgba(12,90,219,1); background-color: rgba(49,49,49,0.01); }#integrio_button_681da0fd50436 .wgl_button_link:hover { border-color: rgba(12,90,219,1); background-color: rgba(12,90,219,1); }#integrio_button_681da0fd50436.effect_3d .link_wrapper { color: rgba(12,90,219,1); }#integrio_button_681da0fd52982 .wgl_button_link { color: rgba(49,49,49,1); }#integrio_button_681da0fd52982 .wgl_button_link:hover { color: rgba(255,255,255,1); }#integrio_button_681da0fd52982 .wgl_button_link { border-color: rgba(12,90,219,1); background-color: rgba(49,49,49,0); }#integrio_button_681da0fd52982 .wgl_button_link:hover { border-color: rgba(12,90,219,1); background-color: rgba(12,90,219,1); }#integrio_button_681da0fd52982.effect_3d .link_wrapper { color: rgba(12,90,219,1); }#integrio_soc_icon_wrap_681da0fd893a5 a{ background: #0C5ADB; border-color: transparent; }#integrio_soc_icon_wrap_681da0fd893a5 a:hover{ background: #ffffff; border-color: #0C5ADB; }#integrio_soc_icon_wrap_681da0fd893a5 a{ color: #ffffff; }#integrio_soc_icon_wrap_681da0fd893a5 a:hover{ color: #0C5ADB; }.integrio_module_social #soc_icon_681da0fd894001{ color: #ffffff; }.integrio_module_social #soc_icon_681da0fd894001:hover{ color: #ffffff; }.integrio_module_social #soc_icon_681da0fd894001{ background: #44b1e4; }.integrio_module_social #soc_icon_681da0fd894001:hover{ background: #44b1e4; }.integrio_module_social #soc_icon_681da0fd8942e2{ color: #ffffff; }.integrio_module_social #soc_icon_681da0fd8942e2:hover{ color: #ffffff; }.integrio_module_social #soc_icon_681da0fd8942e2{ background: #0077b5; }.integrio_module_social #soc_icon_681da0fd8942e2:hover{ background: #0077b5; }