GET api/AssignmentScores/{AssignmentScoreId}
Returns a Assignment Score.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AssignmentScoreId |
Application identifier for the Assignment Score |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
AssignmentScore object for the specified AssignmentScoreId
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": "17b0fa31-3e95-49ed-8129-b6beab0c3dfe",
"SectionId": "786bd1f2-92c4-4663-8f2c-66f8efbb7a53",
"AssignmentId": "df7ecd80-8d24-4c10-8ded-6dbc4885a49d",
"Score": "sample string 4",
"Comment": "sample string 5",
"Id": "def58a99-2874-4929-ae48-cd7d314f33b8",
"DataVersion": "sample string 7",
"ApiName": ""
}
application/xml, text/xml
Sample:
<AssignmentScore 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 7</DataVersion> <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">def58a99-2874-4929-ae48-cd7d314f33b8</Id> <AssignmentId>df7ecd80-8d24-4c10-8ded-6dbc4885a49d</AssignmentId> <Comment>sample string 5</Comment> <Score>sample string 4</Score> <SectionId>786bd1f2-92c4-4663-8f2c-66f8efbb7a53</SectionId> <StudentId>17b0fa31-3e95-49ed-8129-b6beab0c3dfe</StudentId> </AssignmentScore>