Hello!
I am trying to work with this trigger, but I am not very familiar with adaptive cards and not sure that it does what I need it to do.
My original flow sends an adaptive card to an specific user asking for confirmation on some data (dynamic content) and it ends.
So, when the user finally has confirmation (it can take a few days), he/she can click on Confirm or Modify. And then it triggers the new flow where if data is confirmed, it populates a word template with that data, or it modifies with new data that must be a text input.
I used https://adaptivecards.io/designer/ to create my adaptive card.
{ "type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": "Ajuste Inventario",
"wrap": true,
"style": "heading",
"size": "Large",
"weight": "Bolder",
"horizontalAlignment": "Center"
},
{
"type": "TextBlock",
"text": "Por favor, confirme o modifique ajuste preliminar según el siguiente detalle:",
"wrap": true
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Bodega: @{body('JSON_Acta')[0]['Bodega']}",
"wrap": true,
"spacing": "Small"
},
{
"type": "TextBlock",
"text": "Faltante Cantidad: @{body('JSON_Acta')[0]['Bodega']}",
"wrap": true,
"spacing": "Small"
},
{
"type": "TextBlock",
"text": "Faltante Monto: @{body('JSON_Acta')[0]['Bodega']}",
"wrap": true,
"spacing": "Small"
},
{
"type": "TextBlock",
"text": "Sobrante Cantidad: @{body('JSON_Acta')[0]['Bodega']}",
"wrap": true,
"spacing": "Small"
},
{
"type": "TextBlock",
"text": "Sobrante Monto: @{body('JSON_Acta')[0]['Bodega']}",
"wrap": true,
"spacing": "Small"
},
{
"type": "TextBlock",
"text": "Diferencia Final: @{body('JSON_Acta')[0]['Bodega']}",
"wrap": true,
"spacing": "Small"
}
],
"id": "InfoaConfirmar"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Confirmar" , "data": "InfoaConfirmar"
},
{
"type": "Action.Submit",
"title": "Modificar","data": "Editar"
}
]
}
This is the posted card, in red, the dynamic content. Same info I need to get in the new flow when "Confirmar" is clicked
When the new flow runs, I have literally no idea how to get the info... cardoutputs comes back empty
Same happens with "Modificar" button.
Can someone help me?
Thank you!!

Report
All responses (
Answers (