POST api/GradeBookAssignmentScores

Update the Gradebook Student Scores for the Assignments specified in the request body.

Request Information

URI Parameters

None.

Body Parameters

JSON array of the Assignments and Scores to update.

Collection of StudentScore
NameDescriptionTypeAdditional information
GradeBookAssignmentId

integer

None.

suniq

integer

None.

score

string

None.

CourseStandardId

integer

None.

message

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "GradeBookAssignmentId": 1,
    "suniq": 2,
    "score": "sample string 3",
    "CourseStandardId": 4,
    "message": "sample string 5"
  },
  {
    "GradeBookAssignmentId": 1,
    "suniq": 2,
    "score": "sample string 3",
    "CourseStandardId": 4,
    "message": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudentScore xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <StudentScore>
    <GradeBookAssignmentId>1</GradeBookAssignmentId>
    <suniq>2</suniq>
    <score>sample string 3</score>
    <CourseStandardId>4</CourseStandardId>
    <message>sample string 5</message>
  </StudentScore>
  <StudentScore>
    <GradeBookAssignmentId>1</GradeBookAssignmentId>
    <suniq>2</suniq>
    <score>sample string 3</score>
    <CourseStandardId>4</CourseStandardId>
    <message>sample string 5</message>
  </StudentScore>
</ArrayOfStudentScore>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Update the Gradebook Student Scores for the Assignments specified in the request body.

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<anyType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />