Overview
In this article, we will learn how we can create a Teams invite using Power Automate. So, let’s get started!
Business Requirement
When a SharePoint List Item is created, we want to create a Microsoft Teams Invite with the help of Power Automate! We have a list structure with following list schema. Now, let’s start building the flow.
![]()
Step 1
Add a Trigger – “When an item is created”. Provide Site address and URL.
![]()
Step 2
Initialize two variables with the type string and array.
![]()
Step 3
Create Attendees array using the following JSON structure. Here, we need to provide “AttendeesDisplayName” and “Attendees Email”. This will automatically add Apply to each loop.
![]()
Step 4
Set Meeting Body with the following structure.
![]()
Step 5
Add an action – “Invoke an HTTP request”
![]()
Add Method as “POST”
Add URL of the request, Headers, and pass “MeetingBody” for the body of the request.
![]()
![]()
Step 6
Now, let’s save & test the flow.
![]()
Add a new Entry to the SharePoint list.
The flow ran successfully, and Teams invite has been generated successfully.
![]()
![]()
Conclusion
This is how we can simply create Power Automate flow to create Teams Meeting invite!
Happy Power Apping