GET api/Sections/{SectionId}/StudentSectionGrades
Returns the Student Section Grades for a Section.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionId |
Application identifier for the Section |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudentSectionGrade objects for the specified SectionId
Collection of StudentSectionGrade| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentId |
The application identifier of the Student for the Section Grade. |
globally unique identifier |
None. |
| SectionId |
The application identifier of the Section for the Section Grade. |
globally unique identifier |
None. |
| GradingEvaluationScheduleDetailId |
The application identifier of the Grading Evaluation Schedule Detail for the Section Grade. |
globally unique identifier |
None. |
| AssignedScore |
The assigned score for the Section Grade. |
decimal number |
None. |
| Mark |
The mark for the Section Grade. |
string |
None. |
| Numeric |
The numeric value for the Section Grade. |
decimal number |
None. |
| Comments |
The comments for the Section Grade. |
string |
None. |
| Id |
The application identifier for the object. This cannot be changed by the user. |
globally unique identifier |
None. |
| DataVersion |
The version of the API data |
string |
None. |
| ApiName |
The name of the object without the Api suffix |
string |
None. |
Response Formats
application/json, text/json
[
{
"StudentId": "cd7f0d3b-f2df-4da3-a1e6-e6bc3b7d7d7a",
"SectionId": "43c8abec-a26d-4733-b3f0-427484a9451d",
"GradingEvaluationScheduleDetailId": "d6f85d5b-4c84-455d-b3cf-ce385c68d567",
"AssignedScore": 4.0,
"Mark": "sample string 5",
"Numeric": 6.0,
"Comments": "sample string 7",
"Id": "22396001-1568-454b-90f2-8ac40938bcf9",
"DataVersion": "sample string 9",
"ApiName": ""
},
{
"StudentId": "cd7f0d3b-f2df-4da3-a1e6-e6bc3b7d7d7a",
"SectionId": "43c8abec-a26d-4733-b3f0-427484a9451d",
"GradingEvaluationScheduleDetailId": "d6f85d5b-4c84-455d-b3cf-ce385c68d567",
"AssignedScore": 4.0,
"Mark": "sample string 5",
"Numeric": 6.0,
"Comments": "sample string 7",
"Id": "22396001-1568-454b-90f2-8ac40938bcf9",
"DataVersion": "sample string 9",
"ApiName": ""
}
]
application/xml, text/xml
<ArrayOfStudentSectionGrade xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1">
<StudentSectionGrade>
<DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 9</DataVersion>
<Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">22396001-1568-454b-90f2-8ac40938bcf9</Id>
<AssignedScore>4</AssignedScore>
<Comments>sample string 7</Comments>
<GradingEvaluationScheduleDetailId>d6f85d5b-4c84-455d-b3cf-ce385c68d567</GradingEvaluationScheduleDetailId>
<Mark>sample string 5</Mark>
<Numeric>6</Numeric>
<SectionId>43c8abec-a26d-4733-b3f0-427484a9451d</SectionId>
<StudentId>cd7f0d3b-f2df-4da3-a1e6-e6bc3b7d7d7a</StudentId>
</StudentSectionGrade>
<StudentSectionGrade>
<DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 9</DataVersion>
<Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">22396001-1568-454b-90f2-8ac40938bcf9</Id>
<AssignedScore>4</AssignedScore>
<Comments>sample string 7</Comments>
<GradingEvaluationScheduleDetailId>d6f85d5b-4c84-455d-b3cf-ce385c68d567</GradingEvaluationScheduleDetailId>
<Mark>sample string 5</Mark>
<Numeric>6</Numeric>
<SectionId>43c8abec-a26d-4733-b3f0-427484a9451d</SectionId>
<StudentId>cd7f0d3b-f2df-4da3-a1e6-e6bc3b7d7d7a</StudentId>
</StudentSectionGrade>
</ArrayOfStudentSectionGrade>