This trigger has only a Body input now it seems.
I've input the json that created the AC in the originating flow into the Body property.
I then tried adding a Compose action to get data from the card but there is no dynamic data available.
I think I've done the same thing that I've watched folks do in videos but I don't get the same result and don't understand why.
Here is the json for the AC. This same json is in the Post Card action within the originating flow and in the Body parameter of the "when someone responds" trigger.
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": "@{outputs('Get_SPIFF_Submitter')}",
"id": "acTitle",
"spacing": "medium",
"horizontalAlignment": "left",
"size": "extraLarge",
"weight": "bolder",
"color": "accent"
},
{
"type": "TextBlock",
"text": "Submitted a SPIFF Approval Request ",
"id": "acHeaderTagLine"
},
{
"type": "TextBlock",
"text": "**SPIFF Name:** @{outputs('Get_SPIFF_Name')}",
"size": "Medium",
"id": "acSpiff",
"separator": true
},
{
"type": "TextBlock",
"text": "**SPIFF Number:** @{outputs('Get_Record_ID_for_url')}",
"id": "acSPIFFID"
},
{
"type": "TextBlock",
"text": "**SPIFF Details:** @{outputs('Get_Details')}",
"id": "acDetails"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Acknowledge/Dismiss",
"id": "btnClear",
"data": {
"button": "Dismiss"
}
},
{
"type": "Action.Submit",
"title": "Approve/Reject",
"id": "btnDetails",
"data": {
"button": "Details"
}
}
]
}