Search code examples
c#botframeworkchatbotmicrosoft-teamsazure-bot-service

MS Teams: remove an extension name from a ThumbnailCard


I have a message extension for MS Teams (based on Bot Framework v3). When I create a ThumbnailCard and return it to user, Teams inserts name and logo of my app to card. Can I remove them somehow?

This is how I create a card

var card = new ThumbnailCard { Text = "some text", Title= "title"};

Here is a screenshot:

image


Solution

  • No, the attribution on cards created by a messaging extension can't be removed by the app. Teams will automatically show it.