I am invoking https://graph.microsoft.com/v1.0/me/calendars/{calendarid}/events to create a meeting and I am also the attendee. The payload is
{
"subject": "Let's go for lunch",
"body": {
"contentType": "HTML",
"content": "Does mid month work for you?"
},
"start": {
"dateTime": "2023-09-15T12:00:00",
"timeZone": "Pacific Standard Time"
},
"end": {
"dateTime": "2023-09-15T14:00:00",
"timeZone": "Pacific Standard Time"
},
"location": {
"displayName": "Harry's Bar"
},
"attendees": [
{
"emailAddress": {
"address": "******@RipplingATS.onmicrosoft.com",
"name": "Adele Vance"
},
"type": "required"
}
]
}
However, the meeting is only created on the calendar with calendarid. It is not showing on the main calendar. I know if I am only the scheduler, then it makes sense that it doesn't add to my main calendar. But I am also the attendee, why it doesn't show on the main calendar? Is it expected or I miss some config settings here?
Thanks