Forum Discussion

LeeJinWoo's avatar
LeeJinWoo
Copper Contributor
Dec 18, 2023

When obtaining meeting information using Graph API, excluded users are still searched as participant

Hi,

I created an online meeting using the Graph API (POST /users/{userId}/onlineMeetings) and added users A, B, and C as participants.
After creating the meeting, user D was added by UPDATE participants.attendees using the Graph API (PATCH /users/{userId}/onlineMeetings/{meetingId}). After that, A, the meeting organizer, excluded user D from the meeting chat room.
When you later obtain meeting information using the Graph API, user D is still included in the participants.attendees List.
Is this an API bug? Or did I update incorrectly or get meeting information incorrectly?

    • LeeJinWoo's avatar
      LeeJinWoo
      Copper Contributor
      Hi, I didn't use the API you mentioned. Doesn't that API only work after the meeting ends?
      As I mentioned in the question, I only updated the information below using the PATCH /users/{userId}/onlineMeetings/{meetingId} API for both adding and deleting attendees.
      "participants": {
      "attendees": [
      ]
      }

      1. Add C Participants:
      "participants": {
      "attendees": [ A,B,C ]
      }
      2. Remove Participant C
      "participants": {
      "attendees": [ A,B ]
      }

Resources