POST api/TreatmentReview/TakeReviewAction

Request Information

URI Parameters

None.

Body Parameters

TakeReviewActionDto
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TakeReviewActionDto'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.