Hello,
I have a people picker on my SharePoint I would like to use it on the adaptive card where the user can search for the employee name and will auto-populate the name. Can this be done?
Here is my designer adaptive card Json script, is really simple.
https://adaptivecards.io/designer/
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.3",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": 2,
"items": [
{
"type": "TextBlock",
"text": "Assign To",
"wrap": true
},
{
"type": "Input.Text",
"id": "myName",
"placeholder": "Last, First"
}
]
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
Thank you for your help