GET api/Vitals/AvgDateRangeVitals/{userName}?date1={date1}&date2={date2}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userName | string |
Required |
|
| date1 | string |
Required |
|
| date2 | string |
Required |
Body Parameters
None.
Response Information
Resource Description
VitalAvg| Name | Description | Type | Additional information |
|---|---|---|---|
| AvgPulse | integer |
None. |
|
| AvgSPO2 | integer |
None. |
|
| AvgResp | integer |
None. |
|
| AvgTemp | string |
None. |
|
| AvgDia | integer |
None. |
|
| AvgSys | integer |
None. |
|
| AvgGlu | integer |
None. |
|
| AvgChl | integer |
None. |
|
| AvgHRV | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"AvgPulse": 1,
"AvgSPO2": 2,
"AvgResp": 3,
"AvgTemp": "sample string 4",
"AvgDia": 5,
"AvgSys": 6,
"AvgGlu": 7,
"AvgChl": 8,
"AvgHRV": 9
}
application/xml, text/xml
Sample:
<VitalAvg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhwareWebApi.Util"> <AvgChl>8</AvgChl> <AvgDia>5</AvgDia> <AvgGlu>7</AvgGlu> <AvgHRV>9</AvgHRV> <AvgPulse>1</AvgPulse> <AvgResp>3</AvgResp> <AvgSPO2>2</AvgSPO2> <AvgSys>6</AvgSys> <AvgTemp>sample string 4</AvgTemp> </VitalAvg>