azure logic apps
3 TopicsHow to start a call within the existing MS Teams channel using azure logic app
Hi All, I have a requirement where our azure Logic App will create a new MS Teams, add members into MS Teams and add channel into same MS Teams. Now my next requirement is I want to start a call immediately in the same channel which we have created using Logic App and also this should be done in the same logic app job which we have build for creating MS Teams and channel. As I know there is no separate connector available in Azure logic app to achieve this functionality. So, I dig a little bit and I found below approach. 1. Register a new application using the Azure portal. 2. Get the token from application. 3. Use below rest API method. https://graph.microsoft.com/v1.0/me/onlineMeetings 4. Provide details in the body like start time, end time etc. 5. Call above rest API using azure logic app. So, from the above steps my question is, in the body section where we have included start time, end time etc. can we include same participants which we have added in MS Teams while creating azure logic app. If yes, then how? If it is possible then the flow of my Azure Logic App will be as follow. Create MS Teams --> Add Members into Teams --> Create Channel --> Post the messages into channel --> Call the Graph API (https://graph.microsoft.com/v1.0/me/onlineMeetings) Note:- As soon as Azure Logic App execution is completed it should start a call immediately.1.1KViews0likes0CommentsHow to start MS Teams call using Azure logic app
Hi All, I am working on a requirement where I am using azure logic-app to create following flow. Using azure logic-app, I have to create Microsoft Teams. Add members to Microsoft Teams Create a new Channel within newly created MS Teams. Post a message into a channel. It should call to all the members within the teams using "Meet Now" option in MS Team. I am able to achieve all the above till 4th step but I am not getting any way to make a call to the members in MS team using "Meet Now" option in azure logic-app. Also, I have tried using "Deep linking to an audio" option using below API. https://teams.microsoft.com/l/call/0/0?users=abc@domain.com But after tried to run above link, I am getting an error which is attached with this thread for your reference. If anybody can suggest how to achieve the task mentioned in 5th point that would be very helpful.2.7KViews1like0Comments