POST api/Doctor/PatientVitalSave
Request Information
URI Parameters
None.
Body Parameters
VitalSign| Name | Description | Type | Additional information |
|---|---|---|---|
| hospital_locationid | integer |
None. |
|
| facilityid | integer |
None. |
|
| registrationno | integer |
None. |
|
| encounterid | integer |
None. |
|
| encodedby | integer |
None. |
|
| entrydate | string |
None. |
|
| pageid | integer |
None. |
|
| template_fieldid | integer |
None. |
|
| triage_typeid | integer |
None. |
|
| vital_detailsid | integer |
None. |
|
| appointmentid | integer |
None. |
|
| vitals_detail | Collection of VitalSaveDetails |
None. |
Request Formats
application/json, text/json
Sample:
{
"hospital_locationid": 1,
"facilityid": 2,
"registrationno": 3,
"encounterid": 4,
"encodedby": 5,
"entrydate": "sample string 6",
"pageid": 7,
"template_fieldid": 8,
"triage_typeid": 9,
"vital_detailsid": 10,
"appointmentid": 11,
"vitals_detail": [
{
"vitalId": 1,
"vital_value": "sample string 2",
"vital_unitid": "sample string 3",
"valueid": 4,
"abnormal": true,
"remarks": "sample string 6",
"templatedata": 7,
"vital_detailsid": 8,
"msg": "sample string 9"
},
{
"vitalId": 1,
"vital_value": "sample string 2",
"vital_unitid": "sample string 3",
"valueid": 4,
"abnormal": true,
"remarks": "sample string 6",
"templatedata": 7,
"vital_detailsid": 8,
"msg": "sample string 9"
}
]
}
application/xml, text/xml
Sample:
<VitalSign xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FindDoctorService">
<appointmentid>11</appointmentid>
<encodedby>5</encodedby>
<encounterid>4</encounterid>
<entrydate>sample string 6</entrydate>
<facilityid>2</facilityid>
<hospital_locationid>1</hospital_locationid>
<pageid>7</pageid>
<registrationno>3</registrationno>
<template_fieldid>8</template_fieldid>
<triage_typeid>9</triage_typeid>
<vital_detailsid>10</vital_detailsid>
<vitals_detail>
<VitalSaveDetails>
<abnormal>true</abnormal>
<msg>sample string 9</msg>
<remarks>sample string 6</remarks>
<templatedata>7</templatedata>
<valueid>4</valueid>
<vitalId>1</vitalId>
<vital_detailsid>8</vital_detailsid>
<vital_unitid>sample string 3</vital_unitid>
<vital_value>sample string 2</vital_value>
</VitalSaveDetails>
<VitalSaveDetails>
<abnormal>true</abnormal>
<msg>sample string 9</msg>
<remarks>sample string 6</remarks>
<templatedata>7</templatedata>
<valueid>4</valueid>
<vitalId>1</vitalId>
<vital_detailsid>8</vital_detailsid>
<vital_unitid>sample string 3</vital_unitid>
<vital_value>sample string 2</vital_value>
</VitalSaveDetails>
</vitals_detail>
</VitalSign>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.