web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Power apps Cards with ...
Power Apps
Answered

Power apps Cards with input - Send to teams and wait for input

(0) ShareShare
ReportReport
Posted on by 40

So I'm building a power app cards asking the user to provide an input.

My power automate flow will send the card to a teams channel and i would like to wait until the user provide an input.

I know this is possible via adaptive cards but wanted to try out the cards as it is a better way to define them using my Solution.

In some introduction videos on powerapps cards I saw the presenter doing this by using The Create card action and then sending the card using the 'Post Adaptive card and wait for response' action using the 'Post as' Power Apps bot.

SlickRick_1-1708634851718.png

 


So i was wondering if anyone knows how to achieve that or if this support was dropped?

Thank you
However this doesn't work anymore, and if i try to do it using the Post as 'Flow Bot' i get :

SlickRick_0-1708634815953.png

 

Categories:
I have the same question (0)
  • SlickRick Profile Picture
    40 on at

    I want to add that i know that i can post the card using 

    SlickRick_0-1708635360745.png

    But this wont allow me to wait for a response.

     

  • Verified answer
    v-xiaochen-msft Profile Picture
    Microsoft Employee on at

    Hi @SlickRick ,

     

    Unfortunately, through testing, I discovered that this action is only applicable to adaptive cards but not powerapps cards.

     

    Best Regards,

    Wearsky

  • SlickRick Profile Picture
    40 on at

    That’s sad, it means that it was supported before (as it was demonstrated in the video) but then removed.

     

    If this is not supported then cards becomes a lot less useful.

    im wondering if this will be supported in the future?

  • v-xiaochen-msft Profile Picture
    Microsoft Employee on at

    Hi @SlickRick ,

     

    Sorry, I don't know when it will be supported. I conducted the same test as you, and unfortunately, it didn't work as expected.

     

    Best Regards,

    Wearsky

  • EnochStrok Profile Picture
    57 on at

    I am also trying to do the same thing.

     

    You can make it populate in teams by going to the app in Power Apps -> Edit App -> Json -> Change version from 1.5 to 1.4 -> Save Json -> Then, Save / Publish Card.

     

    My problem after this step is that when I try to select a button on the adaptive card, it says, sending input to app, but in the power automate, it does not do anything. It just waits for the response, but no response is sent for some reason...

  • EnochStrok Profile Picture
    57 on at

    I solved it! It worked!!

     

    This has to do with the power apps for cards JSON coding.

     

    Here is my code, you need to change what is highlighted:

     

    {
      "name": "Shop Order Fulfillment",
      "description": null,
      "author": "Enoch Strok",
      "screens": {
        "main": {
          "template": {
            "type": "AdaptiveCard",
            "body": [
              {
                "type": "Image",
                "id": "image1",
                "height": "150px",
                "width": "150px",
                "horizontalAlignment": "Center"
              },
              {
                "type": "TextBlock",
                "id": "textLabel3",
                "wrap": true,
                "text": "Update on your Order!",
                "fontType": "Default",
                "size": "Large",
                "weight": "Bolder",
                "color": "Accent",
                "horizontalAlignment": "Center",
                "separator": true
              },
              {
                "type": "TextBlock",
                "id": "textLabel4",
                "wrap": true,
                "text": "....., Thank you for submitting a shop order form. We are unable to promise fulfillment of your ..... We can substitute .....Will that work for you?",
                "horizontalAlignment": "Center",
                "size": "Large",
                "color": "Accent",
                "separator": true
              },
              {
                "type": "Container",
                "id": "container1",
                "items": [
                  {
                    "type": "Input.Text",
                    "id": "textInput1",
                    "label": "Message to Shop",
                    "maxLength": 500,
                    "height": "stretch",
                    "spacing": "extraLarge",
                    "placeholder": "Please add details in here if you need an Adjustment.",
                    "isMultiline": true
                  }
                ],
                "separator": true,
                "spacing": "ExtraLarge",
                "horizontalAlignment": "Center",
                "verticalContentAlignment": "Center"
              },
              {
                "type": "Container",
                "id": "container5",
                "items": [
                  {
                    "type": "ColumnSet",
                    "id": "columnSet4",
                    "columns": [
                      {
                        "type": "Column",
                        "id": "column1",
                        "width": "auto",
                        "items": [
                          {
                            "type": "ActionSet",
                            "id": "buttonSet1",
                            "actions": [
                              {
                                "type": "Action.Submit"(used to be Action.Execute)
                                "id": "Accepted Button",
                                "title": "Accepted",
                                "associatedInputs": "auto",
                                "verb": "onSelect_Button1",
                                "style": "positive",
                                "screen": "Thank You"
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  }
                ],
                "horizontalAlignment": "center",
                "verticalContentAlignment": "center"
              },
              {
                "type": "Container",
                "id": "container6",
                "items": [
                  {
                    "type": "ColumnSet",
                    "id": "columnSet5",
                    "columns": [
                      {
                        "type": "Column",
                        "id": "column8",
                        "width": "auto",
                        "items": [
                          {
                            "type": "ActionSet",
                            "id": "buttonSet2",
                            "actions": [
                              {
                                "type": "Action.ShowCard",
                                "id": "Request Adjustment Button",
                                "title": "Request Adjustment",
                                "associatedInputs": "auto",
                                "verb": "onSelect_Button2",
                                "style": "destructive",
                                "screen": "Thank you!",
                                "mode": "primary"
                              }
                            ]
                          }
                        ]
                      }
                    ],
                    "horizontalAlignment": "center"
                  }
                ]
              }
            ],
            "version": "1.4"(used to be 1.5)
            "fallbackText": "fallback text",
            "speak": "speak"
          },
          "verbs": {
            "onSelect_Button1": "\"Accepted\"",
            "onSelect_Button2": "\"Request Adjustment\"",
            "submit": "echo"
          }
        },
        "Thank you!": {
          "template": {
            "type": "AdaptiveCard",
            "body": [
              {
                "type": "TextBlock",
                "size": "Medium",
                "weight": "Bolder",
                "text": "Adjustment Request Received!",
                "id": "textLabel1"
              },
              {
                "type": "TextBlock",
                "text": "We have received your request for the adjustment and we will get back to you as soon as possible. Thank you for your patience and for responding to this card!",
                "wrap": true,
                "id": "textLabel2"
              }
            ],
            "actions": [],
            "version": "1.4", (used to be 1.5)
            "refresh": {
              "action": {
                "verb": "show",
                "type": "Action.Execute"
              }
            }
          },
          "verbs": {
            "show": ""
          }
        }
      },
      "sampleData": {
        "main": {},
        "Thank you!": {}
      },
      "connections": {},
      "variables": {},
      "flows": {},
      "locale": "en-US"
    }
  • SlickRick Profile Picture
    40 on at

    Oh this is nice!

    I moved on other things for the moment but i will definitely give it a try when i come back to it.

    Thanks for sharing! 

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

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 387

#2
timl Profile Picture

timl 340 Super User 2026 Season 1

#3
Vish WR Profile Picture

Vish WR 301

Last 30 days Overall leaderboard