...
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/nextstable/api_v3/users/905/devices headers: { "X-AccountCode": ***account_code***"vclinic", "X-ApiKey": ***"vclinic_api_key***secret", "X-ApiToken": ***"vclinic_api_token***" } parameters: { "device_id": "004D320DCAA2", "device_name": "Thermometer PT3SBT", "type": "ihealth_thermometer_pt3sbt" } |
...
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/nextstable/api_v3/health headers: { "X-AccountCode": ***account_code***"vclinic", "X-ApiKey": ***"vclinic_api_key***", "X-ApiToken": ***"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" } |
...