I am a user with very very little knowledge
I have a flow in power automate that when a task is created in Planner sends an adaptive card to a chat in teams.
This card has 3 buttons (attached screenshot)
FINISH, IN PROGRESS, DELETE.

JSON:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.3",
"body": [
{
"type": "TextBlock",
"text": " NUEVA AVISO\n/\nTAREA\n",
"wrap": true,
"size": "Large",
"weight": "Bolder",
"color": "Attention"
},
{
"type": "TextBlock",
"text": "@{triggerOutputs()?['body/title']}",
"wrap": true,
"size": "Large",
"weight": "Medium",
"color": "Red"
},
{
"type": "TextBlock",
"text": " \n",
"wrap": true
},
{
"type": "TextBlock",
"text": "¿MARCAR COMO COMPLETADO?",
"size": "Small",
"weight": "Lighter",
"wrap": true,
"fontType": "Default",
"isSubtle": false
},
{
"type": "TextBlock",
"text": " \n",
"wrap": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "FINALIZADA",
"style": "positive",
}
},
{
"type": "Action.Submit",
"title": "EN PROGRESO",
}
},
{
"type": "Action.Submit",
"title": "ELIMINAR",
"style": "destructive",
}
}
]
}
I would like these three buttons each one depending on what the user responds to do one thing but I don't know how to do anything else from here, how should I continue?
FINISH will complete the task
IN PROGRESS will send the same adaptive card again after 4 hours.
DELETE will delete the task
THIS IS MY FLOW
