Our institution wants to check to ensure instructors are logging in to their Online Learning courses and not just letting the course run it self. I've been using python and the canvasapi library for most of the reports we've been making. For this one I can't seem to pull the users last login date/time.
Even when using the GET/api/v1/users/self call, the user object returned does not contain the last login. In the api documentation (On this page for what "An User object looks like": https://lms.au.af.edu/doc/api/users.html#method.users.api_index) it lists the last login as "Optional: This field is only returned in certain API calls"
What can I do to be able to get this field when using api calls?