im creating the Adative card using below Json and while submitting action getting error- That action isn’t supported here.
Json-
"{'type': 'AdaptiveCard', '$schema': 'http://adaptivecards.io/schemas/adaptive-card.json', 'version': '1.4', 'body': [{'type': 'TextBlock', 'text': '📌 Lead Follow-up Required', 'weight': 'Bolder', 'size': 'Medium'}, {'type': 'FactSet', 'facts': [{'title': 'Lead ID:', 'value': 'abc'}, {'title': 'Name:', 'value': 'PQR'}, {'title': 'Company:', 'value': 'Test Company'}, {'title': 'Email:', 'value': 'abcd@gmail.com'}]}, {'type': 'TextBlock', 'text': 'Have you contacted this lead?', 'wrap': true, 'spacing': 'Medium'}, {'type': 'Input.ChoiceSet', 'id': 'contacted', 'style': 'compact', 'choices': [{'title': 'Yes', 'value': 'Yes'}, {'title': 'No', 'value': 'No'}]}, {'type': 'TextBlock', 'text': 'What was the response from the customer?', 'wrap': true, 'spacing': 'Medium'}, {'type': 'Input.ChoiceSet', 'id': 'response', 'style': 'compact', 'choices': [{'title': 'Interested', 'value': 'Interested'}, {'title': 'Not-Interested', 'value': 'Not-Interested'}, {'title': 'Follow-up required', 'value': 'Follow-up required'}, {'title': 'Do Not Contact', 'value': 'Do Not Contact'}]}], 'actions': [{'type': 'Action.Submit', 'title': 'Submit', 'data': { 'action': 'lead_followup' }}]}"
