Forum Discussion

Nijs_Jonas's avatar
Nijs_Jonas
Copper Contributor
Jan 30, 2023

Teams adaptive card, unable to reach app

I get the unable to reach app error when i try to submit my adaptive card form.

The card is posted to a team using power automate.

My json:

{
    "type": "AdaptiveCard",
    "body": [
        {
            "type": "TextBlock",
            "text": "Naam van project",
            "wrap": true
        },
        {
            "type": "ColumnSet",
            "columns": [
                {
                    "type": "Column",
                    "width": "stretch",
                    "items": [
                        {
                            "type": "Input.Text",
                            "placeholder": "Placeholder text",
                            "id": "1"
                        }
                    ]
                }
            ]
        },
        {
            "type": "TextBlock",
            "text": "Team",
            "wrap": true,
            "id": "2"
        },
        {
            "type": "Input.ChoiceSet",
            "choices": [
                {
                    "title": "ProAV",
                    "value": "ProAV"
                },
                {
                    "title": "Media",
                    "value": "Media"
                },
                {
                    "title": "Producties",
                    "value": "Producties"
                }
            ],
            "placeholder": "Producties",
            "id": "3"
        },
        {
            "type": "ActionSet",
            "actions": [
                {
                    "type": "Action.Submit",
                    "id": "5",
                    "title": "MAAK"
                }
            ]
        }
    ],
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.4"
}

 

6 Replies

  • We are also able to repro this issue, we will check internally and get back to you.
    • Meghana-MSFT's avatar
      Meghana-MSFT
      Former Employee

      Nijs_Jonas - Can you please confirm if you are using Post adaptive card and wait for a response. Please use "Post and wait" option if you want to receive a submission back from the card. We tested this with the JSON you have shared and it is working fine. Thank you.

       

      Thanks, 

      Meghana

      ---------------------------------------------------------------------------------------------------------- 

      If the response is helpful, please click "**Mark as Best Response**" and like it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate. 

      • Nijs_Jonas's avatar
        Nijs_Jonas
        Copper Contributor

        Meghana-MSFT 

        ok, so this seems to be working indeed, now how can i accept multiple answers ?
        We want to use this adaptive card multiple times, at this moment after the card is submitted you just see the message and you cant return to the card to enter another response.