Simple Adaptive Card

A clean Adaptive Card template with a title, text block, and an Open URL action button. It’s perfect for Power Automate flows that send quick notifications or structured messages in Microsoft Teams.

Adaptive Card notification in Microsoft Teams with a file upload message and a View File button

How to use this template

This Adaptive Card is a starting point. Add dynamic content in Power Automate or refine the layout in the Adaptive Card Designer before adding it to your flow. Highlighted text in the JSON shows the parts you should replace with your own content.

Use as-is
Copy the JSON and insert it directly into your Power Automate flow. Add your own dynamic content to the text or button fields without changing the layout.

Customize it
Paste the JSON into the Adaptive Card Designer to edit visually and preview changes. When customizing, set the Target Version to 1.3 to ensure it works properly.

{
    "type": "AdaptiveCard",
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.3",
    "body": [
        {
            "type": "Container",
            "items": [
                {
                    "type": "TextBlock",
                    "text": "Card Title",
                    "wrap": true,
                    "style": "heading",
                    "size": "Large",
                    "weight": "Bolder"
                }
            ],
            "style": "accent"
        },
        {
            "type": "Container",
            "items": [
                {
                    "type": "TextBlock",
                    "text": "Card Body",
                    "wrap": true
                },
                {
                    "type": "ActionSet",
                    "actions": [
                        {
                            "type": "Action.OpenUrl",
                            "title": "Button Text",
                            "style": "positive",
                            "url": "button-url"
                        }
                    ]
                }
            ]
        }
    ]
}