POST v1/api/telemedicine/inhouseEMR

Request Information

URI Parameters

None.

Body Parameters

inhouseEMRRequest
NameDescriptionTypeAdditional information
doctor_username

string

None.

enrolleeNo

string

None.

complain

string

None.

assessment

string

None.

enrolleeMobile

string

None.

enrolleeEmail

string

None.

updatePhone

boolean

None.

updateEmail

boolean

None.

treatmentPlan

treatment_Advise

None.

prescription

treatment_Advise

None.

lab_test

treatment_Advise

None.

Request Formats

application/json, text/json

Sample:
{
  "doctor_username": "sample string 1",
  "enrolleeNo": "sample string 2",
  "complain": "sample string 3",
  "assessment": "sample string 4",
  "enrolleeMobile": "sample string 5",
  "enrolleeEmail": "sample string 6",
  "updatePhone": true,
  "updateEmail": true,
  "treatmentPlan": {
    "date_MM_dd_yyyy": "sample string 1",
    "treatment_narration": "sample string 2",
    "referred_provider_id": 3,
    "note_to_Provider": "sample string 4"
  },
  "prescription": {
    "date_MM_dd_yyyy": "sample string 1",
    "treatment_narration": "sample string 2",
    "referred_provider_id": 3,
    "note_to_Provider": "sample string 4"
  },
  "lab_test": {
    "date_MM_dd_yyyy": "sample string 1",
    "treatment_narration": "sample string 2",
    "referred_provider_id": 3,
    "note_to_Provider": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<inhouseEMRRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.telemedicine.inhouseEMR">
  <assessment>sample string 4</assessment>
  <complain>sample string 3</complain>
  <doctor_username>sample string 1</doctor_username>
  <enrolleeEmail>sample string 6</enrolleeEmail>
  <enrolleeMobile>sample string 5</enrolleeMobile>
  <enrolleeNo>sample string 2</enrolleeNo>
  <lab_test>
    <date_MM_dd_yyyy>sample string 1</date_MM_dd_yyyy>
    <note_to_Provider>sample string 4</note_to_Provider>
    <referred_provider_id>3</referred_provider_id>
    <treatment_narration>sample string 2</treatment_narration>
  </lab_test>
  <prescription>
    <date_MM_dd_yyyy>sample string 1</date_MM_dd_yyyy>
    <note_to_Provider>sample string 4</note_to_Provider>
    <referred_provider_id>3</referred_provider_id>
    <treatment_narration>sample string 2</treatment_narration>
  </prescription>
  <treatmentPlan>
    <date_MM_dd_yyyy>sample string 1</date_MM_dd_yyyy>
    <note_to_Provider>sample string 4</note_to_Provider>
    <referred_provider_id>3</referred_provider_id>
    <treatment_narration>sample string 2</treatment_narration>
  </treatmentPlan>
  <updateEmail>true</updateEmail>
  <updatePhone>true</updatePhone>
</inhouseEMRRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"doctor_username":"sample string 1","enrolleeNo":"sample string 2","complain":"sample string 3","assessment":"sample string 4","enrolleeMobile":"sample string 5","enrolleeEmail":"sample string 6","updatePhone":true,"updateEmail":true,"treatmentPlan":{"date_MM_dd_yyyy":"sample string 1","treatment_narration":"sample string 2","referred_provider_id":3,"note_to_Provider":"sample string 4"},"prescription":{"date_MM_dd_yyyy":"sample string 1","treatment_narration":"sample string 2","referred_provider_id":3,"note_to_Provider":"sample string 4"},"lab_test":{"date_MM_dd_yyyy":"sample string 1","treatment_narration":"sample string 2","referred_provider_id":3,"note_to_Provider":"sample string 4"}}

Response Information

Resource Description

inhouseEMRResult
NameDescriptionTypeAdditional information
message

string

None.

success

boolean

None.

errorMsg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "message": "sample string 1",
  "success": true,
  "errorMsg": "sample string 3"
}

application/xml, text/xml

Sample:
<inhouseEMRResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.telemedicine.inhouseEMR">
  <errorMsg>sample string 3</errorMsg>
  <message>sample string 1</message>
  <success>true</success>
</inhouseEMRResult>

text/html

Sample:
{"message":"sample string 1","success":true,"errorMsg":"sample string 3"}