PUT api/RcAdminRq/Put
Updates a review question information.
Request Information
URI Parameters
None.
Body Parameters
PutReviewQuestionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| RqId | integer |
Required |
|
| Text | string |
Required |
|
| ForStudentReviewer | boolean |
Required |
|
| ForTutorReviewer | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"RqId": 1,
"Text": "sample string 2",
"ForStudentReviewer": true,
"ForTutorReviewer": true
}
application/xml, text/xml
Sample:
<PutReviewQuestionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StudyTree.Core.Dtos.ReviewNs"> <ForStudentReviewer>true</ForStudentReviewer> <ForTutorReviewer>true</ForTutorReviewer> <RqId>1</RqId> <Text>sample string 2</Text> </PutReviewQuestionDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
200 OK
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. |