POST api/EMRAPI/SaveEMRDoctorWisePatientNote

Request Information

URI Parameters

None.

Body Parameters

SaveEMRDoctorWisePatientNote
NameDescriptionTypeAdditional information
RegistrationId

integer

None.

DoctorId

integer

None.

PatientNotes

string

None.

UserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RegistrationId": 1,
  "DoctorId": 2,
  "PatientNotes": "sample string 3",
  "UserId": 4
}

application/xml, text/xml

Sample:
<SaveEMRDoctorWisePatientNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMRAPI.Models">
  <DoctorId>2</DoctorId>
  <PatientNotes>sample string 3</PatientNotes>
  <RegistrationId>1</RegistrationId>
  <UserId>4</UserId>
</SaveEMRDoctorWisePatientNote>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.