Assignments
API for accessing assignment information.
An ExternalToolTagAttributes object looks like:
A LockInfo object looks like:
A RubricRating object looks like:
A RubricCriteria object looks like:
An AssignmentDate object looks like:
A TurnitinSettings object looks like:
A NeedsGradingCount object looks like:
A ScoreStatistic object looks like:
An Assignment object looks like:
A BasicUser object looks like:
An AssignmentOverride object looks like:
DELETE /api/v1/courses/:course_id/assignments/:id
DELETE /api/v1/courses/:course_id/assignments/:id
Scope: url:DELETE|/api/v1/courses/:course_id/assignments/:id
Delete the given assignment.
Example Request:
Returns an Assignment object.
AssignmentsApiController#index
GET /api/v1/courses/:course_id/assignments
GET /api/v1/courses/:course_id/assignments
Scope: url:GET|/api/v1/courses/:course_id/assignments
GET /api/v1/courses/:course_id/assignment_groups/:assignment_group_id/assignments
GET /api/v1/courses/:course_id/assignment_groups/:assignment_group_id/assignments
Scope: url:GET|/api/v1/courses/:course_id/assignment_groups/:assignment_group_id/assignments
Returns the paginated list of assignments for the current course or assignment group.
Request Parameters:
Parameter | Type | Description |
---|---|---|
|
| Optional information to include with each assignment:
Allowed values: |
|
| The partial title of the assignments to match and return. |
|
| Apply assignment overrides for each assignment, defaults to true. |
|
| Split up “needs_grading_count” by sections into the “needs_grading_count_by_section” key, defaults to false |
|
| If included, only return certain assignments depending on due date and submission status. Allowed values: |
|
| if set, return only assignments specified |
|
| Determines the order of the assignments. Defaults to “position”. Allowed values: |
|
| Return only assignments that have post_to_sis set or not set. |
|
| Return only New Quizzes assignments |
Returns a list of Assignment objects.
AssignmentsApiController#user_index
GET /api/v1/users/:user_id/courses/:course_id/assignments
GET /api/v1/users/:user_id/courses/:course_id/assignments
Scope: url:GET|/api/v1/users/:user_id/courses/:course_id/assignments
Returns the paginated list of assignments for the specified user if the current user has rights to view. See List assignments for valid arguments.
AssignmentsApiController#duplicate
POST /api/v1/courses/:course_id/assignments/:assignment_id/duplicate
POST /api/v1/courses/:course_id/assignments/:assignment_id/duplicate
Scope: url:POST|/api/v1/courses/:course_id/assignments/:assignment_id/duplicate
Duplicate an assignment and return a json based on result_type argument.
Request Parameters:
Parameter | Type | Description |
---|---|---|
|
| Optional information: When the root account has the feature ‘newquizzes_on_quiz_page |
Example Request:
Returns an Assignment object.
AssignmentsApiController#student_group_members
GET /api/v1/courses/:course_id/assignments/:assignment_id/users/:user_id/group_members
GET /api/v1/courses/:course_id/assignments/:assignment_id/users/:user_id/group_members
Scope: url:GET|/api/v1/courses/:course_id/assignments/:assignment_id/users/:user_id/group_members
Returns student ids and names for the group.
Example Request:
Returns a list of BasicUser objects.
GET /api/v1/courses/:course_id/assignments/:id
GET /api/v1/courses/:course_id/assignments/:id
Scope: url:GET|/api/v1/courses/:course_id/assignments/:id
Returns the assignment with the given id.
Request Parameters:
Parameter | Type | Description |
---|---|---|
|
| Associations to include with the assignment. The “assignment_visibility” option requires that the Differentiated Assignments course feature be turned on. If “observed_users” is passed, submissions for observed users will also be included. For “score_statistics” to be included, the “submission” option must also be set. Allowed values: |
|
| Apply assignment overrides to the assignment, defaults to true. |
|
| Split up “needs_grading_count” by sections into the “needs_grading_count_by_section” key, defaults to false |
|
| All dates associated with the assignment, if applicable |
Returns an Assignment object.
AssignmentsApiController#create
POST /api/v1/courses/:course_id/assignments
POST /api/v1/courses/:course_id/assignments
Scope: url:POST|/api/v1/courses/:course_id/assignments
Create a new assignment for this course. The assignment is created in the active state.
Request Parameters:
Parameter | Type | Description |
---|---|---|
| Required | The assignment name. |
|
| The position of this assignment in the group when displaying assignment lists. |
|
| List of supported submission types for the assignment. Unless the assignment is allowing online submissions, the array should only have one element.
If not allowing online submissions, your options are:
If you are allowing online submissions, you can have one or many allowed submission types:
Allowed values: |
|
| Allowed extensions if submission_types includes “online_upload”
Example:
|
|
| Only applies when the Turnitin plugin is enabled for a course and the submission_types array includes “online_upload”. Toggles Turnitin submissions for the assignment. Will be ignored if Turnitin is not available for the course. |
|
| Only applies when the VeriCite plugin is enabled for a course and the submission_types array includes “online_upload”. Toggles VeriCite submissions for the assignment. Will be ignored if VeriCite is not available for the course. |
|
| Settings to send along to turnitin. See Assignment object definition for format. |
|
| Data used for SIS integrations. Requires admin-level token with the “Manage SIS” permission. JSON string required. |
|
| Unique ID from third party integrations |
|
| If submission_types does not include external_tool,discussion_topic, online_quiz, or on_paper, determines whether or not peer reviews will be turned on for the assignment. |
|
| Whether peer reviews will be assigned automatically by Canvas or if teachers must manually assign peer reviews. Does not apply if peer reviews are not enabled. |
|
| If true, Canvas will send a notification to students in the class notifying them that the content has changed. |
|
| If present, the assignment will become a group assignment assigned to the group. |
|
| If this is a group assignment, teachers have the options to grade students individually. If false, Canvas will apply the assignment’s score to each member of the group. If true, the teacher can manually assign scores to each member of the group. |
|
| Hash of external tool parameters if submission_types is [“external_tool”]. See Assignment object definition for format. |
|
| The maximum points possible on the assignment. |
|
| The strategy used for grading the assignment. The assignment defaults to “points” if this field is omitted. Allowed values: |
|
| The day/time the assignment is due. Must be between the lock dates if there are lock dates. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. |
|
| The day/time the assignment is locked after. Must be after the due date if there is a due date. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. |
|
| The day/time the assignment is unlocked. Must be before the due date if there is a due date. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. |
|
| The assignment’s description, supports HTML. |
|
| The assignment group id to put the assignment in. Defaults to the top assignment group in the course. |
|
| List of overrides for the assignment. |
|
| Whether this assignment is only visible to overrides (Only useful if ‘differentiated assignments’ account setting is on) |
|
| Whether this assignment is published. (Only useful if ‘draft state’ account setting is on) Unpublished assignments are not visible to students. |
|
| The grading standard id to set for the course. If no value is provided for this argument the current grading_standard will be un-set from this course. This will update the grading_type for the course to ‘letter_grade’ unless it is already ‘gpa_scale’. |
|
| Whether this assignment is counted towards a student’s final grade. |
|
| Whether this assignment is shown in the gradebook. |
|
| Whether this assignment should use the Quizzes 2 LTI tool. Sets the submission type to ‘external_tool’ and configures the external tool attributes to use the Quizzes 2 LTI tool configured for this course. Has no effect if no Quizzes 2 LTI tool is configured. |
|
| Whether this assignment is moderated. |
|
| The maximum number of provisional graders who may issue grades for this assignment. Only relevant for moderated assignments. Must be a positive value, and must be set to 1 if the course has fewer than two active instructors. Otherwise, the maximum value is the number of active instructors in the course minus one, or 10 if the course has more than 11 active instructors. |
|
| The user ID of the grader responsible for choosing final grades for this assignment. Only relevant for moderated assignments. |
|
| Boolean indicating if provisional graders’ comments are visible to other provisional graders. Only relevant for moderated assignments. |
|
| Boolean indicating if provisional graders’ identities are hidden from other provisional graders. Only relevant for moderated assignments. |
|
| Boolean indicating if provisional grader identities are visible to the the final grader. Only relevant for moderated assignments. |
|
| Boolean indicating if the assignment is graded anonymously. If true, graders cannot see student identities. |
|
| The number of submission attempts allowed for this assignment. Set to -1 for unlimited attempts. |
|
| The Attachment ID of the document being annotated.
Only applies when submission_types includes “student_annotation”. |
Returns an Assignment object.
AssignmentsApiController#update
PUT /api/v1/courses/:course_id/assignments/:id
PUT /api/v1/courses/:course_id/assignments/:id
Scope: url:PUT|/api/v1/courses/:course_id/assignments/:id
Modify an existing assignment.
Request Parameters:
Parameter | Type | Description |
---|---|---|
|
| The assignment name. |
|
| The position of this assignment in the group when displaying assignment lists. |
|
| Only applies if the assignment doesn’t have student submissions.
List of supported submission types for the assignment. Unless the assignment is allowing online submissions, the array should only have one element.
If not allowing online submissions, your options are:
If you are allowing online submissions, you can have one or many allowed submission types:
Allowed values: |
|
| Allowed extensions if submission_types includes “online_upload”
Example:
|
|
| Only applies when the Turnitin plugin is enabled for a course and the submission_types array includes “online_upload”. Toggles Turnitin submissions for the assignment. Will be ignored if Turnitin is not available for the course. |
|
| Only applies when the VeriCite plugin is enabled for a course and the submission_types array includes “online_upload”. Toggles VeriCite submissions for the assignment. Will be ignored if VeriCite is not available for the course. |
|
| Settings to send along to turnitin. See Assignment object definition for format. |
|
| The sis id of the Assignment |
|
| Data used for SIS integrations. Requires admin-level token with the “Manage SIS” permission. JSON string required. |
|
| Unique ID from third party integrations |
|
| If submission_types does not include external_tool,discussion_topic, online_quiz, or on_paper, determines whether or not peer reviews will be turned on for the assignment. |
|
| Whether peer reviews will be assigned automatically by Canvas or if teachers must manually assign peer reviews. Does not apply if peer reviews are not enabled. |
|
| If true, Canvas will send a notification to students in the class notifying them that the content has changed. |
|
| If present, the assignment will become a group assignment assigned to the group. |
|
| If this is a group assignment, teachers have the options to grade students individually. If false, Canvas will apply the assignment’s score to each member of the group. If true, the teacher can manually assign scores to each member of the group. |
|
| Hash of external tool parameters if submission_types is [“external_tool”]. See Assignment object definition for format. |
|
| The maximum points possible on the assignment. |
|
| The strategy used for grading the assignment. The assignment defaults to “points” if this field is omitted. Allowed values: |
|
| The day/time the assignment is due. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. |
|
| The day/time the assignment is locked after. Must be after the due date if there is a due date. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. |
|
| The day/time the assignment is unlocked. Must be before the due date if there is a due date. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. |
|
| The assignment’s description, supports HTML. |
|
| The assignment group id to put the assignment in. Defaults to the top assignment group in the course. |
|
| List of overrides for the assignment. If the |
|
| Whether this assignment is only visible to overrides (Only useful if ‘differentiated assignments’ account setting is on) |
|
| Whether this assignment is published. (Only useful if ‘draft state’ account setting is on) Unpublished assignments are not visible to students. |
|
| The grading standard id to set for the course. If no value is provided for this argument the current grading_standard will be un-set from this course. This will update the grading_type for the course to ‘letter_grade’ unless it is already ‘gpa_scale’. |
|
| Whether this assignment is counted towards a student’s final grade. |
|
| Whether this assignment is shown in the gradebook. |
|
| Whether this assignment is moderated. |
|
| The maximum number of provisional graders who may issue grades for this assignment. Only relevant for moderated assignments. Must be a positive value, and must be set to 1 if the course has fewer than two active instructors. Otherwise, the maximum value is the number of active instructors in the course minus one, or 10 if the course has more than 11 active instructors. |
|
| The user ID of the grader responsible for choosing final grades for this assignment. Only relevant for moderated assignments. |
|
| Boolean indicating if provisional graders’ comments are visible to other provisional graders. Only relevant for moderated assignments. |
|
| Boolean indicating if provisional graders’ identities are hidden from other provisional graders. Only relevant for moderated assignments. |
|
| Boolean indicating if provisional grader identities are visible to the the final grader. Only relevant for moderated assignments. |
|
| Boolean indicating if the assignment is graded anonymously. If true, graders cannot see student identities. |
|
| The number of submission attempts allowed for this assignment. Set to -1 or null for unlimited attempts. |
|
| The Attachment ID of the document being annotated.
Only applies when submission_types includes “student_annotation”. |
|
| If true, updated_at will be set even if no changes were made. |
|
| [DEPRECATED] Effective 2021-05-26 (notice given 2021-02-18) Only applies if the assignment doesn’t have student submissions. |
Returns an Assignment object.
AssignmentsApiController#bulk_update
PUT /api/v1/courses/:course_id/assignments/bulk_update
PUT /api/v1/courses/:course_id/assignments/bulk_update
Scope: url:PUT|/api/v1/courses/:course_id/assignments/bulk_update
Update due dates and availability dates for multiple assignments in a course.
Accepts a JSON array of objects containing two keys each: id
, the assignment id, and all_dates
, an array of AssignmentDate
structures containing the base and/or override dates for the assignment, as returned from the List assignments endpoint with include[]=all_dates.
This endpoint cannot create or destroy assignment overrides; any existing assignment overrides that are not referenced in the arguments will be left alone. If an override is given, any dates that are not supplied with it will be defaulted. To clear a date, specify null explicitly.
All referenced assignments will be validated before any are saved. A list of errors will be returned if any provided dates are invalid, and no changes will be saved.
The bulk update is performed in a background job, use the Progress API to check its status.
Example Request:
Returns a Progress object.
AssignmentOverridesController#index
GET /api/v1/courses/:course_id/assignments/:assignment_id/overrides
GET /api/v1/courses/:course_id/assignments/:assignment_id/overrides
Scope: url:GET|/api/v1/courses/:course_id/assignments/:assignment_id/overrides
Returns the paginated list of overrides for this assignment that target sections/groups/students visible to the current user.
Returns a list of AssignmentOverride objects.
AssignmentOverridesController#show
GET /api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
GET /api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
Scope: url:GET|/api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
Returns details of the the override with the given id.
Returns an AssignmentOverride object.
AssignmentOverridesController#group_alias
GET /api/v1/groups/:group_id/assignments/:assignment_id/override
GET /api/v1/groups/:group_id/assignments/:assignment_id/override
Scope: url:GET|/api/v1/groups/:group_id/assignments/:assignment_id/override
Responds with a redirect to the override for the given group, if any (404 otherwise).
AssignmentOverridesController#section_alias
GET /api/v1/sections/:course_section_id/assignments/:assignment_id/override
GET /api/v1/sections/:course_section_id/assignments/:assignment_id/override
Scope: url:GET|/api/v1/sections/:course_section_id/assignments/:assignment_id/override
Responds with a redirect to the override for the given section, if any (404 otherwise).
AssignmentOverridesController#create
POST /api/v1/courses/:course_id/assignments/:assignment_id/overrides
POST /api/v1/courses/:course_id/assignments/:assignment_id/overrides
Scope: url:POST|/api/v1/courses/:course_id/assignments/:assignment_id/overrides
One of student_ids, group_id, or course_section_id must be present. At most one should be present; if multiple are present only the most specific (student_ids first, then group_id, then course_section_id) is used and any others are ignored.
Request Parameters:
Parameter | Type | Description |
---|---|---|
|
| The IDs of the override’s target students. If present, the IDs must each identify a user with an active student enrollment in the course that is not already targetted by a different adhoc override. |
|
| The title of the adhoc assignment override. Required if student_ids is present, ignored otherwise (the title is set to the name of the targetted group or section instead). |
|
| The ID of the override’s target group. If present, the following conditions must be met for the override to be successful:
See Appendix: Group assignments for more info. |
|
| The ID of the override’s target section. If present, must identify an active section of the assignment’s course not already targetted by a different override. |
|
| The day/time the overridden assignment is due. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. If absent, this override will not affect due date. May be present but null to indicate the override removes any previous due date. |
|
| The day/time the overridden assignment becomes unlocked. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. If absent, this override will not affect the unlock date. May be present but null to indicate the override removes any previous unlock date. |
|
| The day/time the overridden assignment becomes locked. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. If absent, this override will not affect the lock date. May be present but null to indicate the override removes any previous lock date. |
Example Request:
Returns an AssignmentOverride object.
AssignmentOverridesController#update
PUT /api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
PUT /api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
Scope: url:PUT|/api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
All current overridden values must be supplied if they are to be retained; e.g. if due_at was overridden, but this PUT omits a value for due_at, due_at will no longer be overridden. If the override is adhoc and student_ids is not supplied, the target override set is unchanged. Target override sets cannot be changed for group or section overrides.
Request Parameters:
Parameter | Type | Description |
---|---|---|
|
| The IDs of the override’s target students. If present, the IDs must each identify a user with an active student enrollment in the course that is not already targetted by a different adhoc override. Ignored unless the override being updated is adhoc. |
|
| The title of an adhoc assignment override. Ignored unless the override being updated is adhoc. |
|
| The day/time the overridden assignment is due. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. If absent, this override will not affect due date. May be present but null to indicate the override removes any previous due date. |
|
| The day/time the overridden assignment becomes unlocked. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. If absent, this override will not affect the unlock date. May be present but null to indicate the override removes any previous unlock date. |
|
| The day/time the overridden assignment becomes locked. Accepts times in ISO 8601 format, e.g. 2014-10-21T18:48:00Z. If absent, this override will not affect the lock date. May be present but null to indicate the override removes any previous lock date. |
Example Request:
Returns an AssignmentOverride object.
AssignmentOverridesController#destroy
DELETE /api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
DELETE /api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
Scope: url:DELETE|/api/v1/courses/:course_id/assignments/:assignment_id/overrides/:id
Deletes an override and returns its former details.
Example Request:
Returns an AssignmentOverride object.
AssignmentOverridesController#batch_retrieve
GET /api/v1/courses/:course_id/assignments/overrides
GET /api/v1/courses/:course_id/assignments/overrides
Scope: url:GET|/api/v1/courses/:course_id/assignments/overrides
Returns a list of specified overrides in this course, providing they target sections/groups/students visible to the current user. Returns null elements in the list for requests that were not found.
Request Parameters:
Parameter | Type | Description |
---|---|---|
| Required | Ids of overrides to retrieve |
| Required | Ids of assignments for each override |
Example Request:
Returns a list of AssignmentOverride objects.
AssignmentOverridesController#batch_create
POST /api/v1/courses/:course_id/assignments/overrides
POST /api/v1/courses/:course_id/assignments/overrides
Scope: url:POST|/api/v1/courses/:course_id/assignments/overrides
Creates the specified overrides for each assignment. Handles creation in a transaction, so all records are created or none are.
One of student_ids, group_id, or course_section_id must be present. At most one should be present; if multiple are present only the most specific (student_ids first, then group_id, then course_section_id) is used and any others are ignored.
Errors are reported in an errors attribute, an array of errors corresponding to inputs. Global errors will be reported as a single element errors array
Request Parameters:
Parameter | Type | Description |
---|---|---|
| Required | Attributes for the new assignment overrides. See Create an assignment override for available attributes |
Example Request:
Returns a list of AssignmentOverride objects.
AssignmentOverridesController#batch_update
PUT /api/v1/courses/:course_id/assignments/overrides
PUT /api/v1/courses/:course_id/assignments/overrides
Scope: url:PUT|/api/v1/courses/:course_id/assignments/overrides
Updates a list of specified overrides for each assignment. Handles overrides in a transaction, so either all updates are applied or none. See Update an assignment override for available attributes.
All current overridden values must be supplied if they are to be retained; e.g. if due_at was overridden, but this PUT omits a value for due_at, due_at will no longer be overridden. If the override is adhoc and student_ids is not supplied, the target override set is unchanged. Target override sets cannot be changed for group or section overrides.
Errors are reported in an errors attribute, an array of errors corresponding to inputs. Global errors will be reported as a single element errors array
Request Parameters:
Parameter | Type | Description |
---|---|---|
| Required | Attributes for the updated overrides. |
Example Request:
Returns a list of AssignmentOverride objects.
Appendixes
Appendix: Group assignments
The following diagram provides an example to describe the structure of group assignments. It also shows the correspondence between the fields of an assignment override API request and the resources they map to.
The components in yellow are group sets. When creating or updating an assignment override, you will refer to the group set by the group_category_id
field.
The components in green are groups. An assignment can become a group assignment iff it has a group_category_id
that maps to an active group set, as well as a group_id
that maps to an active, valid group. In the API, you will be specifying the group by the group_id
field of the assignment_override
construct.
Important: an assignment must be assigned to a group set (the group_category_id
field) on creation for an override with a group_id
to be effective.
See Also:
© Instructure, Inc. Generated on Wed Nov 6 14:20:05 2024 This documentation is generated directly from the Canvas LMS source code, available on Github.
Last updated