Overview
This integration connects Feedier to Microsoft Teams. When a new feedback response is received on Feedier, its content is automatically sent to a specific Microsoft Teams channel of your choice. This allows your team to be notified in real time directly within Teams whenever feedback comes in.
The integration is built using a Power Automate flow with two steps: a Teams webhook trigger that receives the feedback payload from Feedier, and a "Post message" action that delivers it to your chosen channel.
Technical setup
Part 1 – Power Automate Setup
Flow Overview
The Microsoft Power Automate flow has two steps:
When a Teams webhook request is received
Post message in a chat or channel
Step 1 – "When a Teams webhook request is received" Trigger
Login to Power Automate : https://make.powerautomate.com
In Power Automate, click + New → Automated cloud flow, choose Skip, then click + New step.
Search for and select "When a Teams webhook request is received".
Set "Who can trigger the flow?" to Anyone.
Expected result: Trigger is configured and a Teams Webhook POST URL is generated.
Step 2 – "Post message in a chat or channel" Action
Click + New step, search for "Post a card in a chat or channel", and select it.
Configure as follows:
Post as: Flow bot
Post in: Channel
Team: (select your actual Team)
Channel: (select your target Channel)
Card Adaptive (Copy Paste this):
{
"type": "AdaptiveCard",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"text": "@{triggerBody()?['title']}",
"weight": "Bolder",
"size": "Medium"
},
{
"type": "TextBlock",
"text": "@{triggerBody()?['message']}",
"wrap": true
}
]
}Expected result: Action is configured to post a message to the correct Teams channel.
Step 3 – Save & Activate
Click Save.
Click Turn On to activate the flow.
Copy the Teams Webhook POST URL from the trigger step — you will need it in Part 2.
Part 2 – Feedier Autopilot Setup
Step 1 – Open Workflows
Log in to Feedier and navigate to Workflows.
Select an existing segment you want to trigger the integration on, or create a new one.
Step 2 – Add the Microsoft Teams Integration
Under the Actions column for your chosen segment, click + to add a new action.
From the list of available integrations, select Send a notification to Microsoft Teams.
Step 3 – Configure the Integration
In the Webhook URL field, paste the Teams Webhook POST URL copied from Power Automate (Part 1, Step 3).
Click Save.
Step 4 – Activate
Make sure the automation is saved and published.
From this point on, every time a feedback response is received on Feedier and matches your segment, its content will be automatically posted to your configured Microsoft Teams channel.




