GET api/StudentSectionGrades/{StudentSectionGradeId}
Returns a Student Section Grade.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentSectionGradeId |
Application identifier for the Student Section Grade |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
StudentSectionGrade object for the specified StudentSectionGradeId
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": "d5c9c186-76e9-45d5-8ca6-d27eaf08f8df",
"SectionId": "41458376-2900-4f01-8224-b274fdcdedd2",
"GradingEvaluationScheduleDetailId": "19167386-3c4c-4a0b-a01d-669f03ec5ae4",
"AssignedScore": 4.0,
"Mark": "sample string 5",
"Numeric": 6.0,
"Comments": "sample string 7",
"Id": "ed7e2c2d-6e0e-4331-8f2b-f3796b901369",
"DataVersion": "sample string 9",
"ApiName": ""
}
application/xml, text/xml
<StudentSectionGrade xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1"> <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 9</DataVersion> <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">ed7e2c2d-6e0e-4331-8f2b-f3796b901369</Id> <AssignedScore>4</AssignedScore> <Comments>sample string 7</Comments> <GradingEvaluationScheduleDetailId>19167386-3c4c-4a0b-a01d-669f03ec5ae4</GradingEvaluationScheduleDetailId> <Mark>sample string 5</Mark> <Numeric>6</Numeric> <SectionId>41458376-2900-4f01-8224-b274fdcdedd2</SectionId> <StudentId>d5c9c186-76e9-45d5-8ca6-d27eaf08f8df</StudentId> </StudentSectionGrade>