Found this content helpful? Log in or sign up to leave a like!

Course Invite Tracking

Jump to solution
RA929
Community Member

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!

Labels (1)
1 Solution
dbrace
Community Coach
Community Coach

Hi @RA929,

The best that I can think of is a mix of:

  1. an API call that shows who is currently invited (https://CANVAS_DOMAIN/api/v1/courses/COURSE_NUMBER/enrollments?state[]=invited&per_page=100)
  2. 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

View solution in original post