I am trying to replace a HeroCard that has multiple CardAction buttons. I would like to use AdaptiveCards, however, I don't see any documentation that states how to enable postBack from an AdaptiveCard button. I see open browser, and what not, but no postBack.
Is this supported yet?
var cardButtons = new List<CardAction>();
var yesAction = new CardAction()
{
Value = "Yes",
Type = "postBack",
Title = "Yes"
};
cardButtons.Add(yesAction);
var noAction = new CardAction()
{
Value = "Nope",
Type = "postBack",
Title = "No, I'll try it"
};
cardButtons.Add(noAction);
var plCard = new HeroCard()
{
Title = $"Are you sure?",
Buttons = cardButtons
};