1

I want to check the students attendance for all google classroom courses. As the meeting_code will be the same for each course (recurring), how can I figure out the attendance for each meeting? Which parameter can help me to solve that? Any ideas?

Thanks

lu.c.n
  • 31
  • 5

1 Answers1

1

Yes, you can if you are an admin

  • From the user interface, go to the Admin console and go to Reports -> Audit log -> Google Meet. You can filter the results by start time, user name etc.

  • In Apps Script you need to enable and use the Advanced Service Admin Reports API.

  • More specific, you need to use the method Activities:list, specifying the student of itnerest as userKey and meet as applicationName

  • You can filter by different parameters as specified for the Google Meet Audit Activity Events, like startTime of the meeting, or e.g. duration_seconds whihc not only allows you to estimate either a student participated, but also for how long he did.

  • I recommend you to test the request with the Try this API feature before implementing it into Apps Script

ziganotschka
  • 25,866
  • 2
  • 16
  • 33