Hi,
I am able to generate the adaptive card on the teams through the below code snippet
But I am able to see the heading as Workflows and I want to see as Campaign in place of Workflows.
Please suggest me accordingly.
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "This is to remind about the Campaign.Did you Complete the request?",
"wrap": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Yes",
"data": {
"response": "Yes"
}
},
{
"type": "Action.Submit",
"title": "No",
"data": {
"response": "No"
}
}
],
"version": "1.4"
}