Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove footer from Microsoft Teams Message send with Powerapps Workflow?

Microsoft is retiring the Office 365 connectors from Microsoft Teams, including the webhook one that allows automatic messaging through very simple POST message (see this devblog from microsoft).

I am switching to the given solution of using a PowerApps flow named : Post to a channel when a webhook request is received

Everything is working great but I have a deeply, ugly, and irritating footer that is added to every message (and sometimes, when using action buttons, not at the bottom). It is written "[USERNAME] used a Workflow template to send this card. Get template".

How can I disable the footer in my JSON request. My current body is :

{
        "type": "message",
        "attachments": [ {
            "contentType":"application/vnd.microsoft.card.adaptive",
             "contentUrl":null,
             "content":{
                "$schema":"http://adaptivecards.io/schemas/adaptive-card.json",
                "type":"AdaptiveCard",
                "version":"1.2",
                "msteams": {
                    "width": "Full",
                },
                "body":[
                    {
                        "type": "TextBlock",
                        "size": "medium",
                        "weight": "bolder",
                        "text": "Header Text",
                        "style": "heading",
                        "wrap": false
                    },
                    {
                        "type": "TextBlock",
                        "text": "Simple text"
                        "wrap": true
                    }
                ]
            }
        }
    ]
}
like image 601
Double Sept Avatar asked Oct 19 '25 14:10

Double Sept


1 Answers

Creating a copy of your workflow seems to do the trick. Found this out through this post. Worked for me.

like image 114
Clouds Avatar answered Oct 21 '25 05:10

Clouds



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!