Hello,
I'm trying to fill a sharepoint list using a flow triggered on "For a selected Item".
I'm posting automatically in teams an adaptive card with a Action submit button wich should tigger my flow, but i always got an error message "Sorry, we can't acces to the application"
Here is my adaptive card:
{
"type": "AdaptiveCard",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "TextBlock",
"text": "Status"
},
{
"type": "Input.ChoiceSet",
"placeholder": "Placeholder text",
"choices": [
{
"title": "Not Started",
"value": "Not Started"
},
{
"title": "In Progress",
"value": "In Progress"
},
{
"title": "Completed",
"value": "Completed"
}
],
"style": "expanded",
"id": "1",
"$data": "Status",
"value": "In Progress"
}
]
},
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "TextBlock",
"text": "Relevance"
},
{
"type": "Input.ChoiceSet",
"placeholder": "",
"choices": [
{
"title": "Relevant for Engineering ",
"value": "Relevant for Engineering "
},
{
"title": "Non Relevant for Engineering ",
"value": "Non Relevant for Engineering "
}
],
"style": "expanded",
"id": "2"
}
]
}
]
},
{
"type": "Input.Text",
"placeholder": "Topic",
"id": "3"
},
{
"type": "Input.Number",
"placeholder": "Time Spent",
"id": "4"
},
{
"type": "Input.Text",
"placeholder": "Comment",
"id": "5"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Update Status",
"id": "{\"59\": \"9434f9ce-c2b0-40c5-b51a-99f61d74e131\"}"
}
]
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0"
}
Did somebody ever had this issue?
Thanks a lot 😃