POST api/EMRAPI/SavePatientProblems

Request Information

URI Parameters

None.

Body Parameters

SavePatientProblems
NameDescriptionTypeAdditional information
HospitalLocationID

integer

None.

FacilityId

integer

None.

RegistrationId

integer

None.

EncounterId

integer

None.

PageId

integer

None.

xmlProblemDetails

string

None.

UserId

integer

None.

Remarks

string

None.

IsPregment

boolean

None.

IsBreastFeed

boolean

None.

IsShowNote

boolean

None.

DoctorId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "HospitalLocationID": 1,
  "FacilityId": 2,
  "RegistrationId": 3,
  "EncounterId": 4,
  "PageId": 5,
  "xmlProblemDetails": "sample string 6",
  "UserId": 7,
  "Remarks": "sample string 8",
  "IsPregment": true,
  "IsBreastFeed": true,
  "IsShowNote": true,
  "DoctorId": 12
}

application/xml, text/xml

Sample:
<SavePatientProblems xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMRAPI.Models">
  <DoctorId>12</DoctorId>
  <EncounterId>4</EncounterId>
  <FacilityId>2</FacilityId>
  <HospitalLocationID>1</HospitalLocationID>
  <IsBreastFeed>true</IsBreastFeed>
  <IsPregment>true</IsPregment>
  <IsShowNote>true</IsShowNote>
  <PageId>5</PageId>
  <RegistrationId>3</RegistrationId>
  <Remarks>sample string 8</Remarks>
  <UserId>7</UserId>
  <xmlProblemDetails>sample string 6</xmlProblemDetails>
</SavePatientProblems>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.