Hi everyone.
How do I create an Adaptive Card with three checklists and send it via Teams? When someone responds, I want to save their response in a list.
Hi @davipolonini24 ,
Please try this
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"type": "Input.Toggle",
"title": "Test1",
"id": "1",
"valueOn": "Test1"
},
{
"type": "Input.Toggle",
"title": "Test2",
"id": "2",
"valueOn": "Test2"
},
{
"type": "Input.Toggle",
"title": "Test3",
"id": "3",
"valueOn": "Test3"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Action.Submit"
}
]
}
]
}
Best Regards,
Wearsky