Collaborations API
API for accessing course and group collaboration information.
A Collaborator object looks like:
{ // The unique user or group identifier for the collaborator. id: 12345, // The type of collaborator (e.g. "user" or "group"). type: "user", // The name of the collaborator. name: "Don Draper" }
List members of a collaboration. CollaborationsController#members
GET /api/v1/collaborations/:id/members
Examples
curl http://<canvas>/api/v1/courses/1/collaborations/1/members
Returns a list of
Collaborators