POST api/TreatmentReview/TakeReviewAction
Request Information
URI Parameters
None.
Body Parameters
TakeReviewActionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Status | ReviewStatus |
None. |
|
| Comment | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Status": 1,
"Comment": "sample string 2"
}
application/xml, text/xml
Sample:
<TakeReviewActionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Silver.Agenda.Core.Application.Dtos"> <Comment>sample string 2</Comment> <Id>1</Id> <Status>Pending</Status> </TakeReviewActionDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.