GET api/Sections/{SectionId}/StudentSectionGrades/{GradingEvaluationScheduleDetailId}

Returns the Student Section Grades for a Section and Grading Evaluation Schedule Detail.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SectionId

Application identifier for the Section

globally unique identifier

Required

GradingEvaluationScheduleDetailId

Application identifier for the Grading Evaluation Schedule Detail

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StudentSectionGrade objects for the specified SectionId and GradingEvaluationScheduleDetailId

Collection of 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": "3d29927c-3475-4cdc-bfd9-fa789d15bb82",
    "SectionId": "bef7a893-39fd-43ed-95c7-9d7e8f317cb9",
    "GradingEvaluationScheduleDetailId": "34e36ffa-5d62-4b06-a55f-f756391e2b2b",
    "AssignedScore": 4.0,
    "Mark": "sample string 5",
    "Numeric": 6.0,
    "Comments": "sample string 7",
    "Id": "25b131b6-e86b-4c2f-9837-42dc9e698ef1",
    "DataVersion": "sample string 9",
    "ApiName": ""
  },
  {
    "StudentId": "3d29927c-3475-4cdc-bfd9-fa789d15bb82",
    "SectionId": "bef7a893-39fd-43ed-95c7-9d7e8f317cb9",
    "GradingEvaluationScheduleDetailId": "34e36ffa-5d62-4b06-a55f-f756391e2b2b",
    "AssignedScore": 4.0,
    "Mark": "sample string 5",
    "Numeric": 6.0,
    "Comments": "sample string 7",
    "Id": "25b131b6-e86b-4c2f-9837-42dc9e698ef1",
    "DataVersion": "sample string 9",
    "ApiName": ""
  }
]

application/xml, text/xml

Sample:
<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">25b131b6-e86b-4c2f-9837-42dc9e698ef1</Id>
    <AssignedScore>4</AssignedScore>
    <Comments>sample string 7</Comments>
    <GradingEvaluationScheduleDetailId>34e36ffa-5d62-4b06-a55f-f756391e2b2b</GradingEvaluationScheduleDetailId>
    <Mark>sample string 5</Mark>
    <Numeric>6</Numeric>
    <SectionId>bef7a893-39fd-43ed-95c7-9d7e8f317cb9</SectionId>
    <StudentId>3d29927c-3475-4cdc-bfd9-fa789d15bb82</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">25b131b6-e86b-4c2f-9837-42dc9e698ef1</Id>
    <AssignedScore>4</AssignedScore>
    <Comments>sample string 7</Comments>
    <GradingEvaluationScheduleDetailId>34e36ffa-5d62-4b06-a55f-f756391e2b2b</GradingEvaluationScheduleDetailId>
    <Mark>sample string 5</Mark>
    <Numeric>6</Numeric>
    <SectionId>bef7a893-39fd-43ed-95c7-9d7e8f317cb9</SectionId>
    <StudentId>3d29927c-3475-4cdc-bfd9-fa789d15bb82</StudentId>
  </StudentSectionGrade>
</ArrayOfStudentSectionGrade>