GET api/Sections/{SectionId}/AssignmentScores
Returns the Assignment Scores 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 AssignmentScore objects for the specified SectionId
Collection of AssignmentScore| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentId |
The application identifier of the Student for the Assignment Score. |
globally unique identifier |
None. |
| SectionId |
The application identifier of the Section for the Assignment Score. |
globally unique identifier |
None. |
| AssignmentId |
The application identifier of the Assignment for the Assignment Score. |
globally unique identifier |
None. |
| Score |
The score for the Assignment Score. |
string |
None. |
| Comment |
The comment for the Assignment Score. |
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": "67417f66-ae80-465e-9d12-3207464043bb",
"SectionId": "5260e584-a40e-4d84-8a1c-d59a650325d0",
"AssignmentId": "b98245ac-2d86-4cf0-8699-990aa2c4dc4e",
"Score": "sample string 4",
"Comment": "sample string 5",
"Id": "4a51196d-870c-4360-b357-3b7683567c17",
"DataVersion": "sample string 7",
"ApiName": ""
},
{
"StudentId": "67417f66-ae80-465e-9d12-3207464043bb",
"SectionId": "5260e584-a40e-4d84-8a1c-d59a650325d0",
"AssignmentId": "b98245ac-2d86-4cf0-8699-990aa2c4dc4e",
"Score": "sample string 4",
"Comment": "sample string 5",
"Id": "4a51196d-870c-4360-b357-3b7683567c17",
"DataVersion": "sample string 7",
"ApiName": ""
}
]
application/xml, text/xml
Sample:
<ArrayOfAssignmentScore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1">
<AssignmentScore>
<DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 7</DataVersion>
<Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">4a51196d-870c-4360-b357-3b7683567c17</Id>
<AssignmentId>b98245ac-2d86-4cf0-8699-990aa2c4dc4e</AssignmentId>
<Comment>sample string 5</Comment>
<Score>sample string 4</Score>
<SectionId>5260e584-a40e-4d84-8a1c-d59a650325d0</SectionId>
<StudentId>67417f66-ae80-465e-9d12-3207464043bb</StudentId>
</AssignmentScore>
<AssignmentScore>
<DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 7</DataVersion>
<Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">4a51196d-870c-4360-b357-3b7683567c17</Id>
<AssignmentId>b98245ac-2d86-4cf0-8699-990aa2c4dc4e</AssignmentId>
<Comment>sample string 5</Comment>
<Score>sample string 4</Score>
<SectionId>5260e584-a40e-4d84-8a1c-d59a650325d0</SectionId>
<StudentId>67417f66-ae80-465e-9d12-3207464043bb</StudentId>
</AssignmentScore>
</ArrayOfAssignmentScore>