web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Power Automate - Power Automate Mobile App
Unanswered

How to change the title in the Power Automate

(0) ShareShare
ReportReport
Posted on by 94
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"
}
 
Categories:
I have the same question (0)
  • Suggested answer
    Tomac Profile Picture
    1,610 Moderator on at
    How to change the title in the Power Automate
    What you're looking at isn't the title, it's the Sender's name.
     
    In regular chat it shows the person's profile picture and name in the same location - the adaptive card is being sent by Workflows so it's showing Workflows as the name of the sender.
     
    EDIT:
    You can also modify the adaptive card to add a title to it, as in the following example added into the card you posted:
    {
      "type": "AdaptiveCard",
      "body": [
    	{
                "type": "TextBlock",
                "size": "Medium",
                "weight": "Bolder",
                "text": "Campaigns"
            },
        {
          "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"
    }
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Telen Wang – Community Spotlight

We are honored to recognize Telen Wang as our August 2025 Community…

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Automate

#1
Tomac Profile Picture

Tomac 986 Moderator

#2
stampcoin Profile Picture

stampcoin 699 Super User 2025 Season 2

#3
Riyaz_riz11 Profile Picture

Riyaz_riz11 577 Super User 2025 Season 2

Featured topics