Is there any way to see what courses tutors have access to in canvas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Wondering is ther any way of finding out what courses tutors/instructors have been added to?
Any clues.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you have Admin access, please follow the guide here: 📔How do I view the enrollments for a user in an account?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes there are multiple ways 🙂
- Manually doing VLOOKUP with Provisioning reports
To get the provisioning reports go to Admin -> Settings -> Reports. Then download the following reports
- Enrollments (This report will show all user enrollments within an account
- Courses (To map course name with Enrollments table using "canvas_course_id")
- Users (To map user name with Enrollments table using "canvas_user_id")
- Getting site-wide data using Canvas Data
Canvas Data 2 allows you to create custom reports. Using Canvas Data, with a single SQL query you can get a list of courses being assigned to all trainers
You might need to contact your CSM to enable Canvas Data 2 for you.
Feel free to send me a PM if you need help setting up Canvas Data 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you don't want to do VLOOKUP or set up Canvas Data, there is another easier way by using Canvas API. You can enter a list of trainers into a spreadsheet, then write a script to iterate through each trainer and display the enrolled courses (Using Enrollments API endpoint). If you would like to go down this path, let me know and I can assist you with the script.