GET api/Sections/{SectionId}/Assignments/{AssignmentId}/AssignmentScores
Returns the Assignment Scores for a Section and Assignment.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionId |
Application identifier for the Section |
globally unique identifier |
Required |
| AssignmentId |
Application identifier for the Assignment |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AssignmentScore objects for the specified SectionId and AssignmentId
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
[
{
"StudentId": "e181aad4-b5e0-4ec5-9d89-fe4372f1050b",
"SectionId": "09d318fb-4cf1-4391-99a9-27f069470531",
"AssignmentId": "2a86412f-3f1b-495c-85c6-29d917752eb5",
"Score": "sample string 4",
"Comment": "sample string 5",
"Id": "e8c128d4-7f2b-40e3-b38a-1d521a72afc3",
"DataVersion": "sample string 7",
"ApiName": ""
},
{
"StudentId": "e181aad4-b5e0-4ec5-9d89-fe4372f1050b",
"SectionId": "09d318fb-4cf1-4391-99a9-27f069470531",
"AssignmentId": "2a86412f-3f1b-495c-85c6-29d917752eb5",
"Score": "sample string 4",
"Comment": "sample string 5",
"Id": "e8c128d4-7f2b-40e3-b38a-1d521a72afc3",
"DataVersion": "sample string 7",
"ApiName": ""
}
]
application/xml, text/xml
<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">e8c128d4-7f2b-40e3-b38a-1d521a72afc3</Id>
<AssignmentId>2a86412f-3f1b-495c-85c6-29d917752eb5</AssignmentId>
<Comment>sample string 5</Comment>
<Score>sample string 4</Score>
<SectionId>09d318fb-4cf1-4391-99a9-27f069470531</SectionId>
<StudentId>e181aad4-b5e0-4ec5-9d89-fe4372f1050b</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">e8c128d4-7f2b-40e3-b38a-1d521a72afc3</Id>
<AssignmentId>2a86412f-3f1b-495c-85c6-29d917752eb5</AssignmentId>
<Comment>sample string 5</Comment>
<Score>sample string 4</Score>
<SectionId>09d318fb-4cf1-4391-99a9-27f069470531</SectionId>
<StudentId>e181aad4-b5e0-4ec5-9d89-fe4372f1050b</StudentId>
</AssignmentScore>
</ArrayOfAssignmentScore>