Found this content helpful? Log in or sign up to leave a like!
Course Invite Tracking
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-08-2025
11:22 AM
I sent out a course invite by adding teachers and assigning them as observers to my course.
But they are no longer showing up and "are kicked off" my course.
Are there analytics to to see who I have invited, if/when they accepted/were removed from the course? Thanks!
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-09-2025
05:11 PM
Hi @RA929,
The best that I can think of is a mix of:
- an API call that shows who is currently invited (https://CANVAS_DOMAIN/api/v1/courses/COURSE_NUMBER/enrollments?state[]=invited&per_page=100)
- an API call that shows who has been deleted (https://CANVAS_DOMAIN/api/v1/courses/COURSE_NUMBER/enrollments?state[]=deleted&per_page=100)
Comparing those two together should be able to help you, at least a little bit.
You can also check out https://canvas.instructure.com/doc/api/enrollments.html for more guidance with the enrollments API call.
-Doug