POST api/TreatmentReview/UpdateTreatmentReviewStatus

Request Information

URI Parameters

None.

Body Parameters

UpdateTreatmentReviewDto
NameDescriptionTypeAdditional information
Name

string

None.

PatientMail

string

None.

TreatmentRequestId

integer

None.

ReviewId

integer

None.

DentistComment

string

None.

PatientComment

string

None.

Status

ReviewStatus

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "PatientMail": "sample string 2",
  "TreatmentRequestId": 3,
  "ReviewId": 4,
  "DentistComment": "sample string 5",
  "PatientComment": "sample string 6",
  "Status": 1
}

application/xml, text/xml

Sample:
<UpdateTreatmentReviewDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Silver.Agenda.Core.Domain.Model.EmergencyReviews">
  <DentistComment>sample string 5</DentistComment>
  <Name>sample string 1</Name>
  <PatientComment>sample string 6</PatientComment>
  <PatientMail>sample string 2</PatientMail>
  <ReviewId>4</ReviewId>
  <Status>Pending</Status>
  <TreatmentRequestId>3</TreatmentRequestId>
</UpdateTreatmentReviewDto>

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 'UpdateTreatmentReviewDto'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.