Hey @SupportBryn ,
Appreciate your response. I looked into the link you have provided but still couldn't figure out my use case.
See the example adaptive card below. Once user selects the item, I would like to show results based on the user selection.

Here is the json code I used in Bot Response.
# adaptivecardjson_services()
- ```
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": “Services.",
"wrap": true
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Test1”,
"associatedInputs": "none"
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Test2”,
"associatedInputs": "none"
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Test3”,
"associatedInputs": "none"
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Test4”,
"associatedInputs": "none"
}
]
}
]
}
```
# Adaptivecard_services()
[Activity
Attachments = ${json(adaptivecardjson_services())}
]
On the "Create" tab in "BeginDialog". I tried to send the adaptive card as a response. See below.

Also, in "dialog Interface" I tried to capture input from Adaptive Card and send output. Not sure if this is the right way of doing it.

In PVA, it is showing raw json code but not Adaptive Card.
Appreciate any help here.
Regards