GET api/StudentSectionGrades/{StudentSectionGradeId}

Returns a Student Section Grade.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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

Sample:
{
  "StudentId": "e8573ba8-21c8-4cff-a050-fdca02f08b81",
  "SectionId": "6cff7902-eaf7-4e2d-a3bd-70d7b73970d5",
  "GradingEvaluationScheduleDetailId": "16de46a3-e5c6-4c96-bc56-53b68b8a6582",
  "AssignedScore": 4.0,
  "Mark": "sample string 5",
  "Numeric": 6.0,
  "Comments": "sample string 7",
  "Id": "140bf36e-6871-4f46-aec9-543e53509c70",
  "DataVersion": "sample string 9",
  "ApiName": ""
}

application/xml, text/xml

Sample:
<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">140bf36e-6871-4f46-aec9-543e53509c70</Id>
  <AssignedScore>4</AssignedScore>
  <Comments>sample string 7</Comments>
  <GradingEvaluationScheduleDetailId>16de46a3-e5c6-4c96-bc56-53b68b8a6582</GradingEvaluationScheduleDetailId>
  <Mark>sample string 5</Mark>
  <Numeric>6</Numeric>
  <SectionId>6cff7902-eaf7-4e2d-a3bd-70d7b73970d5</SectionId>
  <StudentId>e8573ba8-21c8-4cff-a050-fdca02f08b81</StudentId>
</StudentSectionGrade>