The definition of participations for course-level participations is helpful, thanks @stuart_ryan .
I have a follow-up question regarding pulling student-level participations using GET /api/v1/courses/:course_id/analytics/users/:student_id/activity. The participations object returns times and paths:
"participations": [ { "created_at": "2012-01-21T22:00:00-06:00", "url": "https://canvas.example.com/path/to/canvas", }, { "created_at": "2012-01-27T22:00:00-06:00", "url": "https://canvas.example.com/path/to/canvas", } ]
However, only paths to quiz pages are returned. This seems to suggest that navigating through the website (e.g. landing on the home page) are not returned as pages. I'm wondering, are only pages that would generate a participation recorded here?
I ask because I need a way to get student-level details on when any/all pages are accessed.