GET api/AssignmentScores/{AssignmentScoreId}

Returns a Assignment Score.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "8c143774-2c66-4d18-9a1c-c86e34246908",
  "SectionId": "09d3ed6c-68f2-4d34-93fb-d98aaa6fcd6a",
  "AssignmentId": "74b8305d-b19c-45c9-a04a-7c0cd27f2c20",
  "Score": "sample string 4",
  "Comment": "sample string 5",
  "Id": "9d5ae0e2-a3be-4864-ad86-8631da399833",
  "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">9d5ae0e2-a3be-4864-ad86-8631da399833</Id>
  <AssignmentId>74b8305d-b19c-45c9-a04a-7c0cd27f2c20</AssignmentId>
  <Comment>sample string 5</Comment>
  <Score>sample string 4</Score>
  <SectionId>09d3ed6c-68f2-4d34-93fb-d98aaa6fcd6a</SectionId>
  <StudentId>8c143774-2c66-4d18-9a1c-c86e34246908</StudentId>
</AssignmentScore>