Example 1 - Show an Adaptive Card in Microsoft Copilot Studio

Important

Power Virtual Agents capabilities and features are now part of Microsoft Copilot Studio following significant investments in generative AI and enhanced integrations across Microsoft Copilot.

Some articles and screenshots may refer to Power Virtual Agents while we update documentation and training content.

Note

Microsoft Copilot Studio now supports these features without Composer.

Enhance your bot by developing custom dialogs with Bot Framework Composer and then adding them to your Microsoft Copilot Studio bot.

In this example, you'll learn how to show an Adaptive Card in Microsoft Copilot Studio by using Composer.

Important

Composer integration isn't available to users who only have the Teams Microsoft Copilot Studio license. You must have a trial or full Microsoft Copilot Studio license.

Prerequisites

Create a new topic

  1. In Microsoft Copilot Studio, create a new bot named Contoso Meal Delivery Service.

  2. Go to the Topics page and create a new topic called Meal delivery options.

  3. Copy and paste the following trigger phrases:

    what meals can I order
    what meal options do you have
    what dishes do you deliver
    entrees available for delivery
    
  4. On the Authoring canvas, select the default Message node. Select the three vertical dots, then select Delete.

  5. Under the Trigger phrases node, select Add node (+) and then select Ask a question. Then in the Question node:

    1. For Ask a question, enter What city are you in?.

    2. For Identify, select City.

  6. In Save response as, select the automatically created variable. Then in the variable properties pane:

    1. For Name, enter user_city.

    2. For Usage, select Bot (any topic can access).

  7. Select Save.

Microsoft Copilot Studio variable.

Create an adaptive card

Next, you'll display meal choice images that are available in the user's city using Composer.

  1. Open your bot in Composer. For instructions on how to do so, see Getting started with Bot Framework Composer.

  2. Go to the Create page. In your bot, select More options (...) then select + Add a dialog.

    Composer Create tab.

  3. For Name, enter Meals then select OK.

    Composer Create tab new dialog.

  4. Go to the Bot Responses page. In the bot explorer, select Meals, then select Show code.

    Composer show code button.

  5. In the code view, copy and paste the following bot response. Then replace the three example image URLs with your own.

    # Chicken()
    -Chicken
    
    # Steak()
    -Steak
    
    # Tofu()
    -Tofu
    
    # SteakImageURL()
    -https://www.example.com/steak.jpg
    
    # ChickenImageURL()
    -https://www.example.com/chicken.jpg
    
    # TofuImageURL()
    -https://www.example.com/tofu.jpg
    
    

    Composer Bot Responses tab with strings.

  6. Copy and paste the following code into the same code view to add an Adaptive Card that displays three images.

    # adaptivecardjson_meals(location)
    - ```
    {
        "type": "AdaptiveCard",
        "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
        "version": "1.1",
        "body": [
                {
                "type": "TextBlock",
                "text": "Meal delivery options for ${location}:",
                "size": "Medium",
                "weight": "Bolder"
            },
            {
                "type": "ColumnSet",
                "columns": [
                    {
                        "type": "Column",
                        "width": "stretch",
                        "items": [
                            {
                                "type": "Image",
                                "url": "${SteakImageURL()}",
                                "size": "Stretch",
                                "spacing": "Medium",
                                "horizontalAlignment": "Center"
                            }
                        ]
                    },
                    {
                        "type": "Column",
                        "width": "stretch",
                        "items": [
                            {
                                "type": "Image",
                                "url": "${ChickenImageURL()}",
                                "horizontalAlignment": "Center"
                            }
                        ]
                    },
                    {
                        "type": "Column",
                        "width": "stretch",
                        "items": [
                            {
                                "type": "Image",
                                "url": "${TofuImageURL()}",
                                "horizontalAlignment": "Center"
                            }
                        ]
                    }
                ]
            },
            {
                "type": "ColumnSet",
                "columns": [
                    {
                        "type": "Column",
                        "width": "stretch",
                        "items": [
                            {
                                "type": "TextBlock",
                                "text": "${Steak()}",
                                "wrap": true,
                                "horizontalAlignment": "Center"                            
                            }
                        ]
                    },
                    {
                        "type": "Column",
                        "width": "stretch",
                        "items": [
                            {
                                "type": "TextBlock",
                                "text": "${Chicken()}",
                                "wrap": true,
                                "horizontalAlignment": "Center"
                            }
                        ]
                    },
                    {
                        "type": "Column",
                        "width": "stretch",
                        "items": [
                            {
                                "type": "TextBlock",
                                "text": "${Tofu()}",
                                "wrap": true,
                                "horizontalAlignment": "Center"
                            }
                        ]
                    }
                ]
            }
        ]
    }
    ```
    

    Composer Bot Responses tab - Adaptive Card JSON.

  7. Copy and paste the following code into same code view to add an activity that will display the Adaptive Card.

    # AdaptiveCardMeals(location)
    [Activity
        Attachments = ${json(adaptivecardjson_meals(location))}
    ]
    

    Composer Bot Responses tab - Activity.

Display your Adaptive Card

  1. Go to the Create page. In the bot explorer, select the Meals dialog then select the BeginDialog trigger.

  2. On the authoring canvas, select Add (+) then select Send a response.

  3. Select the new Send a response node to open the properties pane. Under Bot responses, select Show code to switch to the code editor.

    Screenshot of show code button

    Warning

    Adding the expression in the next step to the response editor instead of the code editor will result in the bot responding with raw JSON instead of an Adaptive Card.

  4. Copy and paste the following expression into the code editor.

    - ${AdaptiveCardMeals(virtualagent.user_city)}
    

    Microsoft Copilot Studio global variables are accessed in Composer by using the virtualagent scope. This scope won't appear in Composer's property reference menu, but you can access it by entering an expression directly.

    In this example, ${virtualagent.user_city} refers to the user_city global variable that was created in the Microsoft Copilot Studio bot.

    Composer Begin Dialog - add Send a response action.

Publish your content

  1. Publish your Composer content to make it available in your Microsoft Copilot Studio bot.

    Important

    Selecting Publish in Composer makes the changes available for testing, but doesn't automatically publish your bot.

    Publish your bot in Microsoft Copilot Studio to update your bot across all the channels it's connected to.

  2. Go to the Microsoft Copilot Studio Topics page to see your new Meals topic.

    Microsoft Copilot Studio Topics page - new Bot Framework dialog.

  3. Open the Meal delivery options topic.

  4. Under the Question node, select Add node (+). Select Redirect to another topic then choose Meals.

    Microsoft Copilot Studio - redirect to Bot Framework dialog.

  5. Select Save to save the changes to your topic.

Test your bot

To test your changes in Microsoft Copilot Studio, open the Test bot pane and make sure Track between topics is turned on. Enter the message What meals do you deliver? to start your conversation.

Your bot will trigger the Meal delivery options topic, which asks the user for their current city. Then the bot will redirect to the Composer dialog Meals to display an Adaptive Card.

Microsoft Copilot Studio Example 1 test.

Next Steps

Example 2 - Display a multi-select options list in Microsoft Copilot Studio.