Hi,
Today, I have a workflow to create events using Outlook 365.
But I'm implementing to create Team meetings and the idea is to update this meeting if we have new attendees.
Can I do it using Power Automate without MS Graph?
Solved! Go to Solution.
Hi @renatoromao ,
I had to do similar thing for my app, you can use below actions of Office 365 Outlook connector.
First, find the event from outlook calendar,
https://docs.microsoft.com/en-us/connectors/office365/#get-events-(v4)
and then update the event
https://docs.microsoft.com/en-us/connectors/office365/#update-event-(v4)
Thank you,
Anuj
Hi @renatoromao ,
I had to do similar thing for my app, you can use below actions of Office 365 Outlook connector.
First, find the event from outlook calendar,
https://docs.microsoft.com/en-us/connectors/office365/#get-events-(v4)
and then update the event
https://docs.microsoft.com/en-us/connectors/office365/#update-event-(v4)
Thank you,
Anuj
Hi @renatoromao @last_attempt
I am working on similar thing, updating teams meeting through PowerApps
My code:
Office365Outlook.V4CalendarPatchItem(
Dropdown1.Selected.id,
Gallery2.Selected.Id,
TextInput1.Text,
Text(
DateTimeValue(DatePicker1.SelectedDate & " " & HourValue1_10.SelectedText.Value & ":" & MinuteValue1_10.SelectedText.Value);
),
Text(
DateTimeValue(DatePicker1_1.SelectedDate & " " & HourValue1_11.SelectedText.Value & ":" & MinuteValue1_11.SelectedText.Value);
),
timezonevalue.Text
);
but Issue i am facing is aftering editing the meet url is getting removed from body preview
is my approach correct or is there any alternative way for editing teams meet ?
If anyone can help me, it would be great