I am a TA in a course looking to develop some scripts using Python (but am currently building the endpoint in Postman for testing). My goal is to retrieve the users in a course's group, as we use groups on a course to sort students into graders.
I have been able to retrieve a list of Group objects with the endpoint
https://myinstitution.instructure.com/api/v1/courses/123456/groups
where 123456 is the course ID.
From there, I manually retrieved the group IDs offered from the JSON response to try getting users as per the standard at https://canvas.instructure.com/doc/api/groups.html#method.groups.users.
https://myinstitution.instructure.com/api/v1/courses/123456/groups/234567/users
where 234567 is a group ID.
Is there somewhere I'm going wrong?