Are your users using Classroom with Google Meet? Check out the Apps Script quickstart covering how to check student attendance in Google Meet courses.

REST Resource: courses.courseWork

Resource: CourseWork

Course work created by a teacher for students of the course.

JSON representation
{
  "courseId": string,
  "id": string,
  "title": string,
  "description": string,
  "materials": [
    {
      object (Material)
    }
  ],
  "state": enum (CourseWorkState),
  "alternateLink": string,
  "creationTime": string,
  "updateTime": string,
  "dueDate": {
    object (Date)
  },
  "dueTime": {
    object (TimeOfDay)
  },
  "scheduledTime": string,
  "maxPoints": number,
  "workType": enum (CourseWorkType),
  "associatedWithDeveloper": boolean,
  "assigneeMode": enum (AssigneeMode),
  "individualStudentsOptions": {
    object (IndividualStudentsOptions)
  },
  "submissionModificationMode": enum (SubmissionModificationMode),
  "creatorUserId": string,
  "topicId": string,
  "gradeCategory": {
    object (GradeCategory)
  },

  // Union field details can be only one of the following:
  "assignment": {
    object (Assignment)
  },
  "multipleChoiceQuestion": {
    object (MultipleChoiceQuestion)
  }
  // End of list of possible types for union field details.
}
Fields
courseId

string

Identifier of the course.

Read-only.

id

string

Classroom-assigned identifier of this course work, unique per course.

Read-only.

title

string

Title of this course work. The title must be a valid UTF-8 string containing between 1 and 3000 characters.

description

string

Optional description of this course work. If set, the description must be a valid UTF-8 string containing no more than 30,000 characters.

materials[]

object (Material)

Additional materials.

CourseWork must have no more than 20 material items.

state

enum (CourseWorkState)

Status of this course work. If unspecified, the default state is DRAFT.

creationTime

string (Timestamp format)

Timestamp when this course work was created.

Read-only.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Timestamp of the most recent change to this course work.

Read-only.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

dueDate

object (Date)

Optional date, in UTC, that submissions for this course work are due. This must be specified if dueTime is specified.

dueTime

object (TimeOfDay)

Optional time of day, in UTC, that submissions for this course work are due. This must be specified if dueDate is specified.

scheduledTime

string (Timestamp format)

Optional timestamp when this course work is scheduled to be published.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

maxPoints

number

Maximum grade for this course work. If zero or unspecified, this assignment is considered ungraded. This must be a non-negative integer value.

workType

enum (CourseWorkType)

Type of this course work.

The type is set when the course work is created and cannot be changed.

associatedWithDeveloper

boolean

Whether this course work item is associated with the Developer Console project making the request.

See courseWork.create for more details.

Read-only.

assigneeMode

enum (AssigneeMode)

Assignee mode of the coursework. If unspecified, the default value is ALL_STUDENTS.

individualStudentsOptions

object (IndividualStudentsOptions)

Identifiers of students with access to the coursework. This field is set only if assigneeMode is INDIVIDUAL_STUDENTS. If the assigneeMode is INDIVIDUAL_STUDENTS, then only students specified in this field are assigned the coursework.

submissionModificationMode

enum (SubmissionModificationMode)

Setting to determine when students are allowed to modify submissions. If unspecified, the default value is MODIFIABLE_UNTIL_TURNED_IN.

creatorUserId

string

Identifier for the user that created the coursework.

Read-only.

topicId

string

Identifier for the topic that this coursework is associated with. Must match an existing topic in the course.

gradeCategory

object (GradeCategory)

The category that this coursework's grade contributes to. Present only when a category has been chosen for the coursework. May be used in calculating the overall grade.

Read-only.

Union field details. Additional details that are specific to a type of course work. details can be only one of the following:
assignment

object (Assignment)

Assignment details. This is populated only when workType is ASSIGNMENT.

Read-only.

multipleChoiceQuestion

object (MultipleChoiceQuestion)

Multiple choice question details. For read operations, this field is populated only when workType is MULTIPLE_CHOICE_QUESTION. For write operations, this field must be specified when creating course work with a workType of MULTIPLE_CHOICE_QUESTION, and it must not be set otherwise.

CourseWorkState

Possible states of course work.

Enums
COURSE_WORK_STATE_UNSPECIFIED No state specified. This is never returned.
PUBLISHED Status for work that has been published. This is the default state.
DRAFT Status for work that is not yet published. Work in this state is visible only to course teachers and domain administrators.
DELETED Status for work that was published but is now deleted. Work in this state is visible only to course teachers and domain administrators. Work in this state is deleted after some time.

Date

Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

  • A full date, with non-zero year, month, and day values.
  • A month and day, with a zero year (for example, an anniversary).
  • A year on its own, with a zero month and a zero day.
  • A year and month, with a zero day (for example, a credit card expiration date).

Related types:

JSON representation
{
  "year": integer,
  "month": integer,
  "day": integer
}
Fields
year

integer

Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.

month

integer

Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.

day

integer

Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.

TimeOfDay

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp.

JSON representation
{
  "hours": integer,
  "minutes": integer,
  "seconds": integer,
  "nanos": integer
}
Fields
hours

integer

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

minutes

integer

Minutes of hour of day. Must be from 0 to 59.

seconds

integer

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

nanos

integer

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

SubmissionModificationMode

Possible modification modes for student submissions.

Enums
SUBMISSION_MODIFICATION_MODE_UNSPECIFIED No modification mode specified. This is never returned.
MODIFIABLE_UNTIL_TURNED_IN Submissions can be modified before being turned in.
MODIFIABLE Submissions can be modified at any time.

Assignment

Additional details for assignments.

JSON representation
{
  "studentWorkFolder": {
    object (DriveFolder)
  }
}
Fields
studentWorkFolder

object (DriveFolder)

Drive folder where attachments from student submissions are placed. This is only populated for course teachers and administrators.

MultipleChoiceQuestion

Additional details for multiple-choice questions.

JSON representation
{
  "choices": [
    string
  ]
}
Fields
choices[]

string

Possible choices.

Methods

create

Creates course work.

delete

Deletes a course work.

get

Returns course work.

list

Returns a list of course work that the requester is permitted to view.

modifyAssignees

Modifies assignee mode and options of a coursework.

patch

Updates one or more fields of a course work.