Export users list/accepted/not accepted invitation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@MARYMCGINTY1 There may be a way for you to locate the information that you are looking for about the pending enrollments in a course via the API. It won't provide you with a CSV, but a JSON that you could then convert to a CSV using a tool like this one .
You could access this JSON at https://[your Canvas domain]/api/v1/courses/[course number]/enrollments?per_page=100&page=1 . If you wanted to the Json to already be filtered to include only students whose enrollments are pending you would format it as https://[your Canvas domain]/api/v1/courses/[course number]/enrollments?state[]=invited&per_page=100&page=1
*note these JSONS will display they first 100 results, if your course has over a thousand users like you state, you would want to change the page at the end of the provided urls about to be able to "page" through the enrollments