web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / No attendees option in...
Power Automate
Suggested Answer

No attendees option in Create Group Event V2

(1) ShareShare
ReportReport
Posted on by 2
In outlook when i create an event in group, i am able to add attendees. but i am not able to add attendees when i do so in power automate flow using Create Group event V2. is there any other way?
Categories:
I have the same question (0)
  • Suggested answer
    Tomac Profile Picture
    4,048 Moderator on at
    Using the Create Event (V4) action, you have to click Show Advanced Options to see the area to add attendees:
     
    If you're using a different action to create an event, please post a screenshot so we know exactly which action you're using.
     
    If this resolved your issue, please mark it as the answer.
  • stampcoin Profile Picture
    5,146 Super User 2026 Season 1 on at
    When you want to specify the attendees for creating group event, you can combine :
    1. List groups.
    2. List group members, Select the members for attendees, it can be customized with extra condition
    3. Send an HTTP request V2.
     
    See below as your reference:
     
     
    Body:
    {
      "subject": "Weekly follow‑up", 
      "body": {
        "contentType": "HTML",
        "content": "Weekly Meeting Call."
      },
      "start": {                                
        "dateTime": "2025-07-23T09:00:00",
        "timeZone": "W. Europe Standard Time"
      },
      "end": {
        "dateTime": "2025-07-23T10:00:00",
        "timeZone": "W. Europe Standard Time"
      },
      "location": { "displayName": "Teams meeting" },
    
      "attendees":@{body('Select')}, //from selection of list group members.
    
      "allowNewTimeProposals": true,
      "isOnlineMeeting": true,
      "onlineMeetingProvider": "teamsForBusiness"
    }
     
  • Suggested answer
    Riyaz_riz11 Profile Picture
    4,048 Super User 2026 Season 1 on at
    Hi,
     

    Solution 1: Use "Create Event (V4)" Instead

    The regular "Create Event (V4)" action (not the group-specific one) can create events in group calendars and supports attendees:


    1. Use "Create Event (V4)" action

      • Calendar id: Use the group's calendar ID (format: group-calendar-id@yourdomain.com)

      • Subject: Your event title

      • Start time: Event start

      • End time: Event end

      • Required attendees: Add email addresses here

      • Optional attendees: Add optional attendees

      • Body: Event description

    2.  

    To get the group calendar ID:


    • Use "List calendars" action first

    • Filter for the group calendar

    • Use its ID in the create event action


    •  

    Solution 2: Create Event Then Add Attendees


    1. Create the group event using "Create Group Event V2"

    2. Update the event with attendees using "Update Event (V4)":

      • Calendar id: Same group calendar

      • Event id: ID from the created event

      • Required attendees: Add your attendees

      • Optional attendees: Add optional attendees


      •  

    3.  

    Solution 3: Use Microsoft Graph API (HTTP Action)

    For full control, use the Graph API directly:


    1. HTTP Action

      • Method: POST

      • URI: https://graph.microsoft.com/v1.0/groups/{group-id}/calendar/events

      • Headers:
         
        Content-Type: application/json

      • Body:
         
        json
        {
          "subject": "@{variables('EventTitle')}",
          "start": {
            "dateTime": "@{variables('StartTime')}",
            "timeZone": "UTC"
          },
          "end": {
            "dateTime": "@{variables('EndTime')}",
            "timeZone": "UTC"
          },
          "attendees": [
            {
              "emailAddress": {
                "address": "user1@domain.com",
                "name": "User One"
              },
              "type": "required"
            },
            {
              "emailAddress": {
                "address": "user2@domain.com",
                "name": "User Two"
              },
              "type": "optional"
            }
          ]
        }


      •  

    Solution 4: Create Personal Event and Invite Group

    Alternative approach:


    1. Create event in your personal calendar using "Create Event (V4)"

    2. Add the group email as an attendee

    3. Add individual attendees as needed


    4.  

    Solution 5: Use "Send an Email" After Event Creation

    If you just need to notify people:


    1. Create the group event (without attendees)

    2. Send email invitation using "Send an email (V2)":

      • Include event details

      • Include calendar invitation (.ics file) as attachment

      • Send to all intended attendees
    If I have answered your question, please mark it as the preferred solution ✅ . If you like my response, please give it a Thumbs Up 👍.
    Regards,
    Riyaz
     
  • stampcoin Profile Picture
    5,146 Super User 2026 Season 1 on at
    Have you got a chance to check this ?

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
Haque Profile Picture

Haque 589

#2
Valantis Profile Picture

Valantis 328

#3
David_MA Profile Picture

David_MA 284 Super User 2026 Season 1

Last 30 days Overall leaderboard