SIS Integration
SIS Integration API
// Assignments that have post_to_sis enabled with other objects for convenience
{
// The unique identifier for the assignment.
"id": 4,
// The unique identifier for the course.
"course_id": 6,
// the name of the assignment
"name": "some assignment",
// The time at which this assignment was originally created
"created_at": "2012-07-01T23:59:00-06:00",
// the due date for the assignment. returns null if not present. NOTE: If this
// assignment has assignment overrides, this field will be the due date as it
// applies to the user requesting information from the API.
"due_at": "2012-07-01T23:59:00-06:00",
// (Optional) Time at which this was/will be unlocked.
"unlock_at": "2013-01-01T00:00:00-06:00",
// (Optional) Time at which this was/will be locked.
"lock_at": "2013-02-01T00:00:00-06:00",
// The maximum points possible for the assignment
"points_possible": 12,
// the types of submissions allowed for this assignment list containing one or
// more of the following: 'discussion_topic', 'online_quiz', 'on_paper', 'none',
// 'external_tool', 'online_text_entry', 'online_url', 'online_upload',
// 'media_recording', 'student_annotation'
"submission_types": ["online_text_entry"],
// Third Party integration id for assignment
"integration_id": "12341234",
// (optional, Third Party integration data for assignment)
"integration_data": "other_data",
// If false, the assignment will be omitted from the student's final grade
"include_in_final_grade": true,
// Includes attributes of a assignment_group for convenience. For more details
// see Assignments API.
"assignment_group": null,
// Includes attributes of a section for convenience. For more details see
// Sections API.
"sections": null,
// Includes attributes of a user assignment overrides. For more details see
// Assignments API.
"user_overrides": null
}Parameter
Type
Description
Parameter
Type
Description
Last updated
Was this helpful?