For Developers

Assignments

List Assignments

assignments.list(class_id, options);

Retrieve a list of Assignments in a Class.

Function Arguments

This query allows for standard paging options.

ParameterTypeDescription
class_idstringThe UUID of the class.

Create Assignment

assignments.create(class_id, assignment);

Create an Assignment in a Class.

Function Arguments

ParameterTypeDescription
class_idstringThe UUID of the class.
assignmentAssignmentThe assignment to create.

Fetch Assignment

assignments.fetch(class_id, assignment_id);

Retrieve an Assignment in a Class.

Function Arguments

ParameterTypeDescription
class_idstringThe UUID of the class.
assignment_idstringThe UUID of the assignment.

Update Assignment

assignments.update(class_id, assignment_id, assignment);

Update an Assignment in a Class.

Function Arguments

ParameterTypeDescription
class_idstringThe UUID of the class.
assignment_idstringThe UUID of the assignment.
assignmentAssignmentA partial assignment object.

Delete Assignment

assignments.delete(class_id, assignment_id);

Delete an Assignment in a Class.

Function Arguments

ParameterTypeDescription
class_idstringThe UUID of the class.
assignment_idstringThe UUID of the assignment.