Attendance
2 TopicsGraph API: Meeting Attendance Details Organizer and Participant Join/Leave Times
Hi Teams Developer Community, I hope this message finds you well. I am currently working on fetching meeting attendance details, specifically the join and leave times of the organizer and participants, using the Microsoft Graph API. Could you please provide guidance on the following points: Endpoints to Use: What are the exact Graph API endpoints for obtaining meeting attendance details, including the join and leave times of all participants? Required Permissions: What permissions are necessary to access these attendance details? Are there any specific configurations needed in Azure AD? JSON Response Format: Below is the JSON format I am aiming to achieve. Could you confirm if this is correct and provide any additional fields or structures that might be useful? { "value": [ { "emailAddress": "abc", "totalAttendanceInSeconds":, "role": "Organizer", "identity": { "id": "", "displayName": ", "tenantId": }, "attendanceIntervals": [ { "joinDateTime": "2021-10-05T04:38:27.6027225Z", "leaveDateTime": "2021-10-05T04:43:49.7702391Z", "durationInSeconds": 322 } ] }, { "emailAddress": "abc", "totalAttendanceInSeconds": 314, "role": "Presenter", "identity": { "id": "57caaef9-5ed0-48d5-8862-e5abfa71b3e9", "displayName": "Lisa Adkins", "tenantId": null }, "attendanceIntervals": [ { "joinDateTime": "2021-10-04T23:13:43.3776519Z", "leaveDateTime": "2021-10-04T23:18:57.5639338Z", "durationInSeconds": 314 } ] } ] }280Views0likes3CommentsTeams Attendance Report - A Network Error Occurred
Hi all. Could anyone shed some light on an issue I have reported that is affecting all users, please? When a user accesses meetings they arranged, either at the time of the meeting or afterwards, they get the following error: All these users are on the same meeting policy so I have checked: [PS]> Get-CsTeamsMeetingPolicy -Identity RestrictedAnonymousAccess | Select AllowEngagementReport AllowEngagementReport --------------------- Enabled I have made a comparison using fiddler to a working tenant and the tenant displaying the global issue, and I see one obvious difference: The working tenant shows HTTP traffic to api.cortana.ai but the tenant with issues shows no trace of this api. This feature worked on the affected tenant until around 4 weeks ago but would love to see if anyone could steer me in the direction of what could have caused this to stop working? Any help is gratefully appreciated. Thanks2.8KViews0likes6Comments