hi,
There is definitely something wrong with your adaptive card code. may take too long to figure, so I tried creating something similar with the editor and this one works for me.
Suggestions: keep IDs without spaces
when editing in https://adaptivecards.io/designer/, make sure you change "select host app" to "teams" and set version to 1.3
----------
when assigning the fields to SharePoint, integer values won't be visible. you may need to change to "expression" and type string(). when you mouse over between the brackets you should see the integer value to select
my template (this did work for me):
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Traffic Count for Falls Church Store"
},
{
"type": "Input.Text",
"placeholder": "How did your day go?",
"id": "info"
},
{
"type": "Input.Text",
"placeholder": "Traffic Count",
"id": "trafficCount"
},
{
"type": "Input.Text",
"placeholder": "Notes",
"id": "Notes"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.3"
}