POST api/EMRAPI/SaveEMRFavProblem

Request Information

URI Parameters

None.

Body Parameters

SaveEMRFavProblem
NameDescriptionTypeAdditional information
ProblemId

integer

None.

HospitalLocationId

integer

None.

DoctorId

integer

None.

UserId

integer

None.

ProblemDescription

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProblemId": 1,
  "HospitalLocationId": 2,
  "DoctorId": 3,
  "UserId": 4,
  "ProblemDescription": "sample string 5"
}

application/xml, text/xml

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

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.