cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
alexteo
Frequent Visitor

Teams Workflow - Post to a channel when a webhook request is received is'nt working

Hi with the recent news that 
"Action Required: O365 connectors within Teams will be deprecated and notifications from this service will stop.Learn more about the timing and how the Workflows app provides a more flexible and secure experience. If you want to continue receiving these types of messages, you can use a workflow to post messages from a webhook request. Set up Workflow"

I was then trying to set up workflow as an alternative, it seems easy at first since Microsoft already has an inbuilt workflow just for webhooks.

Screenshot 2024-07-09 at 7.28.38 PM.png


However i keep facing the same problem that results in the flow to fail, this is the error i keep recieving

Screenshot 2024-07-09 at 7.30.06 PM.png

Its so weird that such a simple flow has problems running, and further more this is suppoedly the new solution so i dont know whats wrong, really seeking all helps and advice, thanks!!

32 REPLIES 32
a-martinez
Regular Visitor

Thanks - this works  - I guess just the Team in-Workflow "Run" is buggy, if not the erroring is not-helpful

Yes I found it was next to useless, hence I was firing the payload off using Postman.

 

Glad it worked for you.

TS79
Regular Visitor

I was also facing this issue.  I came up with the following solution. We are not sending messages with multiple attachments, we are sending one message at a time from some monitoring software. May it help someone else.

 

The software we are using is only able to PUT top level JSON data. We could not use the attachment key as sub keys are required.  We therefore came upon the following solution. We used PowerShell to test it.


 

 

$WebhookUri = "https://prod-157.westus.logic.azure.com:443/workflows/..."

$adaptiveCardJson = @"
        { "type": "messagecard",
          "text": "Test Message" ,}          
"@

Invoke-RestMethod -Method POST $WebhookUri -Body $adaptiveCardJson -ContentType 'application/json'

 

 

In the Teams Workflow it looks like this. The expression will be added to the "message" field once you click "OK":

 

TeamsFlow.jpg

 

I had just gotten this working with Teams connectors last week only to find out it is deprecated this week.

RD01
New Member

Hi @alexteo the post say that it is solved and there is a solution, but the link posted by @Doriima does not have any details yet of the actual fix. Is there a different post where the solution is proposed, can someone please share?

What a mess.  Can't install new flows, old ones going away..

 

I just want to post to a Teams channel....

 

I Love you gavinc! It worked thanks!

Thanks @gavinc It's sending the messages but why it is returning 202 as a response code in postman? does anyone know about it?

alexteo
Frequent Visitor

Yes @RD01 technically the flow work Workflow or power automate isnt working as it should be yet, so i will removed 'Marked as Solution' for now to prevent confusion. 

To clarify, @gavinc  found a workaround you can see from the thread and try if it works for you, otherwise @Doriima  has reached out to Octopus who is working on the problem, i believe we should see it fixed and we can use that flow before connectors expires on October. So for now i will re-open the problem as not solved until we have a definite way that works for everyone. 

Gavin or Dorrima you can clarify if im not recounting accurately or so thanks..

I actually got this to work by changing the default flow that Power automate creates. 
As the first step actually is successful and the flow is failing in the second step where the 'attachment is null',
I actually parsed the output from step 1 as JSON in step 2 and used it in the post to channel step. The I was able to use the variables as required.


Hope this helps someone.


image.png

202 is accepted, so will be a response from Teams hook

https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202


gavinc_0-1721040578918.png

 

I had a meeting with Octopus, but thats been moved out to Wednesday

Thank you, I was missing the top part of the json. 

Here is a sample JSON payload that works via a python requests.post method (You may need to change some things eg; True to true, remove trailing commas, etc.)
N/B : This works on Standard ,General & Private Channels

For private Channels, Use "Post As": User in your Power Automate Flow.
For Standard/Public Channels, use "Post As: Flow Bot", You would need to go to Manage Channel> Moderation, Turn It On and check the `Allow Bots to Submit Message Button`

 

{
    "type": "adaptiveCard",
    "attachments": [
        {
            "contentType": "application/vnd.microsoft.card.adaptive",
            "content": {
                "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
                "type": "AdaptiveCard",
                "version": "1.5",
                "body": [
                    {
                        "type": "Container",
                        "style": "attention",
                        "bleed": True,
                        "spacing": "None",
                        "items": [
                            {"type": "TextBlock", "text": "TEST After o365 deprecation V2 "}
                        ],
                    },
                    {
                        "type": "Container",
                        "style": "emphasis",
                        "items": [
                            {"type": "TextBlock", "text": "**Pipeline Id:** Test Pipeline.backfill", "color": "attention"},
                            {"type": "TextBlock", "text": "_self.pipeline_id_ failed", "color": "attention"},
                            {"type": "TextBlock", "text": "**Task Id:** self.task_id"},
                            {"type": "TextBlock", "text": "**Execution Start Time:**"},
                            {"type": "TextBlock", "text": "self.execution_start_time"},
                        ],
                    },
                    {
                        "type": "TextBlock",
                        "text": "This Error Has Been Resolved.",
                        "id": "Resolved",
                        "isVisible": False
                    },
                    {
                        "type": "TextBlock",
                        "text": "Pending Resolution.",
                        "id": "Unresolved",
                        "isVisible": False
                    }
                ],
                "actions": [

                    {
                        "type": "Action.ToggleVisibility",
                        "title": "Mark as Resolved",
                        "targetElements": [ "Resolved"]
                    }
                ]
            
            },
        }
    ],
}

 

 
The post runs on Power Automate as shown below

viciwuoha_0-1721144485599.png

The Post to the channel gets resolved to what is shown below (Note that step 3 just needs items()?['content'] ie; the content object of any number of Adaptive Card attachment contents in your payload  );

 

{
    "host": {
        "connectionReferenceName": "shared_teams",
        "operationId": "PostCardToConversation"
    },
    "parameters": {
        "poster": "User",
        "location": "Channel",
        "body/recipient/groupId": "eb12xxxxxxxxx",
        "body/recipient/channelId": "1x:bxxxxx@thread.tacv2",
        "body/messageBody": {
            "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
            "type": "AdaptiveCard",
            "version": "1.5",
            "body": [
                {
                    "type": "Container",
                    "style": "attention",
                    "bleed": true,
                    "spacing": "None",
                    "items": [
                        {
                            "type": "TextBlock",
                            "text": "TEST After o365 deprecation V2 "
                        }
                    ]
                },
..............rest of paylod

 

Result

viciwuoha_1-1721145136201.png


Hope this helps. ??

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (637)