Hello Ananda Jana,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you would like to know if it is possible to show a customize bot name in MSTeams when mouse hover.
To customize the bot name that appears when you hover over it in Microsoft Teams, you can update the bot's profile card. This involves editing the bot's name, icon, and description in the app manifest file. Here are the steps:
- In your app manifest file, you can specify the bot's name, icon, and description. This information will be displayed when users hover over the bot.
- Go to your bot dashboard (e.g., The Bot Platform) and update the bot's name, icon, and description - https://help.thebotplatform.com/en/articles/3705582-editing-your-bot-icon-name-and-description-on-microsoft-teams
- Make sure that the bot's profile card is properly configured to display the updated information. This can be done by setting the appropriate properties in the manifest file. This is an example of how you can update the manifest file:
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.11/MicrosoftTeams.schema.json",
"manifestVersion": "1.11",
"version": "1.0.0",
"id": "your-app-id",
"packageName": "com.example.yourapp",
"name": {
"short": "Your App",
"full": "Your Full App Name"
},
"description": {
"short": "Short description of your app",
"full": "Full description of your app"
},
"icons": {
"outline": "https://your-icon-url.com/icon-outline.png",
"color": "https://your-icon-url.com/icon-color.png"
},
"bots": [
{
"botId": "your-bot-id",
"scopes": ["personal", "team", "groupChat"],
"supportsFiles": false,
"isNotificationOnly": false,
"displayName": "Custom Bot Name",
"profile": {
"displayName": "Custom Bot Name",
"iconUrl": "https://your-icon-url.com/icon.png",
"description": "Custom description for hover text"
}
}
]
}
By updating the displayName
and iconUrl
fields, you can customize what users see when they hover over the bot in Microsoft Teams - https://learn.microsoft.com/en-us/microsoftteams/platform/bots/how-to/bot-configuration-experience and https://answers.microsoft.com/en-us/msteams/forum/all/how-to-change-the-teams-bot-name-dynamically/554f784b-65f5-46ba-80d0-ac03d74d1871
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.