Hi,
I though I'd start off describing how the flow is suppoed to work. We have a for that we send to new customers, and sometimes existing customers, I want to use a flow that is triggered by a new form response, flow checks Dynamics for existing records (Contact) using Email addresses. If the Contact exists, flow will post an adaptive card to a channel and wait for a response. When the adaptive card is Submitted, then Dynamics objects will be updated or updated depending on what the user chooses.
The issue:
When I add dynamics data from forms or dynamics to show data that has been inputted, the option to use dynamic content from the adaptive card goes away. I've seen post of other people doing this, so what am I doing wrong?
Adaptive card:
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"text": "Contact Does Not Exist in Dynamics",
"size": "ExtraLarge",
"color": "Accent",
"weight": "Bolder",
"wrap": true
},
{
"type": "TextBlock",
"text": "Name:",
"size": "Large",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "",
"id": "correctName"
},
{
"type": "Input.Text",
"placeholder": "Name",
"id": "createName"
},
{
"type": "TextBlock",
"text": "Title:",
"size": "Large",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "x",
"id": "correctTitle"
},
{
"type": "Input.Text",
"placeholder": "Job Title",
"id": "createTitle"
},
{
"type": "TextBlock",
"size": "Large",
"color": "Accent",
"text": "Role:"
},
{
"type": "TextBlock",
"text": "x",
"id": "correctRole"
},
{
"type": "TextBlock",
"text": "Emial Address:",
"size": "Large",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "x",
"id": "correctEmail"
},
{
"type": "Input.Text",
"placeholder": "Email Address",
"id": "createEmail"
},
{
"type": "TextBlock",
"text": "Business Phone:",
"size": "Large",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "x",
"id": "correctBusinessPhone"
},
{
"type": "Input.Text",
"placeholder": "Business Phone",
"id": "createBusinessPhone"
},
{
"type": "TextBlock",
"text": "Mobile Phone:",
"size": "Large",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "x",
"id": "correctMobile"
},
{
"type": "Input.Text",
"placeholder": "Mobile Phone",
"id": "createMobilePhone"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
@Anonymous @Adaptivecards