Hi everyone,
I have a challenge with Power Automate Flows ( I am a new users who is learning about this tool).
I have a shared calendar in Teams. I am getting the created events, however I can not get the username, email of the event creator.
this is my issue (very similar to other posted some days ago (resolved by Nived), but, now...the issue is other).
How do you use triggerOutput? Where can I insert it into the flow?
Thanks a lot...it is working perfectly.
Question: Is there any place where I can get this type of commands (triggerOutputs)?
Thanks a lot
Carlos G.
Hi @CAGC031268
For Office365 groups event, we are getting email address and name of the group as an organizer using the below expressions:
For email address:
triggerOutputs()?['body/organizer']?['emailAddress/address']
For name:
triggerOutputs()?['body/organizer']?['emailAddress/name']
But you can get the details of the person who scheduled the meeting by fetching the first element of attendees array using the below expressions:
For name:
triggerOutputs()?['body/attendees']?[0]?['emailAddress/name']
For email address:
triggerOutputs()?['body/attendees']?[0]?['emailAddress/address']
If this helps, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks
Michael E. Gernaey
566
Super User 2025 Season 1
David_MA
516
Super User 2025 Season 1
stampcoin
492