I am using the canvas api to retrieve all courses from my canvas instance.
In order to do this I :
- create a new access token in /profile/settings
- Then use this access token to perform an API call to list all courses with https://canvas.instructure.com/doc/api/courses.html#method.courses.index
This works well. However the API only returns the courses that I have specifically created. I need to return all the courses from the canvas instance.
Am I missing something ? What should I do to be able to access all courses ?