Hi @Elton Todd
I can reproduce the issue locally. This error indicates that the current user is not the organizer or attendee of the target meeting and you will be blocked when trying to access the target meeting using someone outside the meeting.
Before getting the target meeting, add the current user as an attendee of the meeting. You can add attendees by updating the meeting:
PATCH /users/{userId}/onlineMeetings/{meetingId}
{
"participants": {
"attendees": [
{
"identity": {
"user": {
"id": "{userId}"
}
},
"upn": "{userPrincipalName}",
"role": "attendee"
}
]
}
}
Get the target meeting using the meeting's organizer or attendees:
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.