List the members of a course section
GET/courses/:course_id/sections/:section_id/members
Returns the section roster with limited per-user info: user_id, first_name, last_name, role, joined_at. Email and clerk_id are intentionally NOT exposed -- this endpoint is reachable by any authenticated user (course pages are public within the app), so the payload is the privacy-floor for member identity.
Sorted by joined_at ASC with a (joined_at, user_id) keyset
cursor as the tiebreaker for stable pagination across pages.
Request
Responses
- 200
- 400
- 401
- 404
- 500
A paginated list of section members
Bad request
Unauthorized
Not found
Internal server error