POST api/Doctor/AddUpdateProgressNotes

Request Information

URI Parameters

None.

Body Parameters

AddProgressNote
NameDescriptionTypeAdditional information
ProgressNoteId

integer

None.

HospitalLocationId

integer

None.

FacilityId

integer

None.

EncounterId

integer

None.

RegistrationId

integer

None.

DoctorId

integer

None.

ProgressNote

string

None.

Active

boolean

None.

EncodedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProgressNoteId": 1,
  "HospitalLocationId": 2,
  "FacilityId": 3,
  "EncounterId": 4,
  "RegistrationId": 5,
  "DoctorId": 6,
  "ProgressNote": "sample string 7",
  "Active": true,
  "EncodedBy": 9
}

application/xml, text/xml

Sample:
<AddProgressNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FindDoctorService">
  <Active>true</Active>
  <DoctorId>6</DoctorId>
  <EncodedBy>9</EncodedBy>
  <EncounterId>4</EncounterId>
  <FacilityId>3</FacilityId>
  <HospitalLocationId>2</HospitalLocationId>
  <ProgressNote>sample string 7</ProgressNote>
  <ProgressNoteId>1</ProgressNoteId>
  <RegistrationId>5</RegistrationId>
</AddProgressNote>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.