Table of Contents |
---|
Device
...
list
Device category | Device name | Device type |
---|---|---|
Pulse, Oximeter |
|
|
Scale |
|
|
Active Minutes, Steps |
|
|
|
| |
Blood Pressure |
|
|
Glucose Meters |
|
|
Thermometer |
|
|
Data classifications
Data | Data Class | Data Type | Unit | Unit value | Type | Range | |
---|---|---|---|---|---|---|---|
1 | Temperature |
|
|
|
|
| |
2 | Blood Glucose |
|
|
|
| ||
3 | Blood Pressure |
|
|
|
|
| |
4 | Weight |
|
|
|
|
| |
5 | Active Minutes |
|
|
| |||
6 | Steps |
|
|
| |||
7 | Pulse |
|
|
| |||
8 | Blood Oxygen |
|
|
| |||
9 | Illuminance |
|
|
|
| ||
10 | Humidity |
|
|
|
| ||
11 | Gas |
|
| ||||
12 | Movement |
|
|
|
|
|
|
13 | Noise |
|
|
|
|
|
|
14 | Range |
|
|
|
|
|
|
APIs
POST /users/{user_id}/devices
Device registration
Parameters
Parameter | Type | Description |
---|---|---|
|
| |
|
| |
|
| |
|
| Device unique ID |
|
| Device name (in device table) |
|
| Device type (in device table) |
E.g.
Code Block | ||
---|---|---|
| ||
request: POST https://api.vseevseepreview.iocom/vc/devstable/api_v3/users/905/devices headers: { "X-AccountCode": = chroniccare360;"vclinic", "X-ApiKey" = 904520ec0f12c77932bb6d0f25791131;: "vclinic_api_secret", "X-ApiToken" = b74078949cb62a0cc2c59ba8d7362728; : "vclinic_api_token" } parameters: { "device_id": = "004D320DCAA2";, "device_name" =: "Thermometer PT3SBT";, "type": = "ihealth_thermometer_pt3sbt"; } |
...
Data Table
...
Data
...
Data Type
...
Unit
...
Unit value
...
Temperature
...
temperature_body
...
temperature_unit
...
cel | fah
...
Blood Glucose
...
bg
...
bg_unit
...
...
Blood Pressure
...
hp, lp
...
bp_unit
...
mmHg | kPa
...
Weight
...
weight
...
weight_unit
...
lbs | kg
...
Active Minutes
...
active_minutes
...
Steps
...
steps
...
Pulse
...
hr
...
Blood Oxygen
...
bo
POST /api_v3/health
Parameters
Parameter | Type | Description |
---|---|---|
|
| |
|
| |
|
| |
|
| Device type (in device table) |
|
| Recorded date (yyyy-mm-dd) |
|
| Unix timestamp |
|
| Device unique ID |
|
| Data type (in data table) |
|
| |
Data Value |
| Data type = value |
Data Unit |
| Data unit = unit value |
E.g.
Code Block | ||
---|---|---|
| ||
request: POST https://api.vseevseepreview.iocom/vc/lateststable/api_v3/health headers: { "X-AccountCode": = chroniccare360;"vclinic", "X-ApiKey" = 904520ec0f12c77932bb6d0f25791131;: "vclinic_api_key", "X-ApiToken" = b74078949cb62a0cc2c59ba8d7362728; : "vclinic_api_token" } parameters: { "type": = "ihealth_thermometer_pt3sbt";, "date": = "2021-08-25";", "time": 1695626540, "device_id" =: "004D320DCAA2";, "data_type": = "temperature_body";", "data_class": "body", "temperature_body": = "36.76";, "temperature_unit" =: "cel"; } |
parameters for blood glucose
Code Block |
---|
"data_type": = "bg", "bg" =: 100, "bg_unit": = "mg/dL" |
parameters for blood pressure
Code Block |
---|
"data_type" =: "bp", "hp": = 100, "lp": = 90, "bp_unit": = "mmHg" |
parameters for weight
Code Block |
---|
"data_type": = "weight", "weight" =: 100, "weight_unit": = "lbs" |
parameters for active minutes & steps
Code Block |
---|
"data_type": = "active_minutes", "active_minutes": = 100, "steps": = 1000 |
parameters for pulse & blood oxygen
Code Block |
---|
"data_type" =: "hr", "hr" =: 100, "bo" =: 100 |