POST api/Assessment

Saves student mastery, StudentId and Masterylevel are required. MasteryLevel is limited to 4-70

Request Information

URI Parameters

None.

Body Parameters

AssessmentMasteryInputModel
NameDescriptionTypeAdditional information
StudentId

Gets or sets the student identifier.

integer

Required

MasteryLevel

Gets or sets the mastery level.

integer

Required

Range: inclusive between 1 and 70

Request Formats

application/json, text/json

Sample:
{
  "StudentId": 1,
  "MasteryLevel": 2
}

application/xml, text/xml

Sample:
<AssessmentMasteryInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LS_API.Models.WordModels.InputModels">
  <MasteryLevel>2</MasteryLevel>
  <StudentId>1</StudentId>
</AssessmentMasteryInputModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.