POST api/PatientApp/UpdateAppointmentRemarks

Request Information

URI Parameters

None.

Body Parameters

UpdateAppointmentRemarksInput
NameDescriptionTypeAdditional information
RegistrationId

integer

None.

AppointmentId

integer

None.

Remarks

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RegistrationId": 1,
  "AppointmentId": 2,
  "Remarks": "sample string 3"
}

application/xml, text/xml

Sample:
<UpdateAppointmentRemarksInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FindDoctorService">
  <AppointmentId>2</AppointmentId>
  <RegistrationId>1</RegistrationId>
  <Remarks>sample string 3</Remarks>
</UpdateAppointmentRemarksInput>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.