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 AssignmentScoreName | 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": "53d129e0-8695-493e-b51b-05837fad0b6e", "SectionId": "776d122b-7192-4a84-991d-5826358068a6", "AssignmentId": "ba348389-00c1-448d-af70-24f2a4a89465", "Score": "sample string 4", "Comment": "sample string 5", "Id": "9e1678c3-0b3a-4cd2-9d8f-ca6954ab5ec9", "DataVersion": "sample string 7", "ApiName": "" }, { "StudentId": "53d129e0-8695-493e-b51b-05837fad0b6e", "SectionId": "776d122b-7192-4a84-991d-5826358068a6", "AssignmentId": "ba348389-00c1-448d-af70-24f2a4a89465", "Score": "sample string 4", "Comment": "sample string 5", "Id": "9e1678c3-0b3a-4cd2-9d8f-ca6954ab5ec9", "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">9e1678c3-0b3a-4cd2-9d8f-ca6954ab5ec9</Id> <AssignmentId>ba348389-00c1-448d-af70-24f2a4a89465</AssignmentId> <Comment>sample string 5</Comment> <Score>sample string 4</Score> <SectionId>776d122b-7192-4a84-991d-5826358068a6</SectionId> <StudentId>53d129e0-8695-493e-b51b-05837fad0b6e</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">9e1678c3-0b3a-4cd2-9d8f-ca6954ab5ec9</Id> <AssignmentId>ba348389-00c1-448d-af70-24f2a4a89465</AssignmentId> <Comment>sample string 5</Comment> <Score>sample string 4</Score> <SectionId>776d122b-7192-4a84-991d-5826358068a6</SectionId> <StudentId>53d129e0-8695-493e-b51b-05837fad0b6e</StudentId> </AssignmentScore> </ArrayOfAssignmentScore>