PUT api/StudentElt/PutEltReview
Creates/updates the EltReview from the specified person to the specified tool.
Request Information
URI Parameters
None.
Body Parameters
PutEltReviewDto| Name | Description | Type | Additional information |
|---|---|---|---|
| EltId | integer |
Required |
|
| Review | integer |
Required Range: inclusive between 1 and 5 |
|
| Comment | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EltId": 1,
"Review": 2,
"Comment": "sample string 3"
}
application/xml, text/xml
Sample:
<PutEltReviewDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StudyTree.Core.Dtos.StudentNs"> <Comment>sample string 3</Comment> <EltId>1</EltId> <Review>2</Review> </PutEltReviewDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |