Dataset: Body Temperature Log
Dataset name:
ds_body_temperature_log
Description
Body Temperature Log Data
Fields in this dataset
Name | Field Name | Description | Field Type | Field Example |
---|---|---|---|---|
Body Temperature |
body_temperature
|
Body Temperature | floating point | 36.7 |
Body Temperature Measurement Location |
body_temperature_measurement_location
|
Where temperature was taken on body | int | 3 |
Body Temperature Measurement Location Description |
body_temperature_measurement_location_description
|
Where temperature was taken on body | varchar | Forehead |
End Measurement Timestamp |
body_temperature_timestamp_end
|
End time and date of body temperature measurement | int | 1648633780 |
Start Measurement Timestamp |
body_temperature_timestamp_start
|
Start time and date of body temperature measurement | int | 1648633780 |
ID |
id
|
The machine name for a record. Internal to PDS and Mydex | int | 1 |
Measurement Group |
measurement_group
|
The top level group activity belongs to | varchar | Activity |
Measurement Log ID |
measurement_id
|
The key that links to Measurement Log | int | 1 |
Created Timestamp |
record_created_timestamp
|
Date record added to PDS | int | 1648633780 |
Updated Timestamp |
record_updated_timestamp
|
Date record updated in the PDS | int | 1648633780 |
Source Device Type |
source_device_type
|
States the type of source device | varchar | PDA |
Source ID |
source_id
|
The unique ID of source of the data | varchar | 3621-29756 |
Source Instance |
source_instance
|
The instance of the source type | int | Google Account 1 |
Source Name |
source_name
|
The Name given to source | varchar | Google Fit |
Making an API request for this Dataset
Example Request to the Sandbox Server
http://sbx-api.mydex.org/api/pds/transaction/UID.json ?key=KEY &api_key=API_KEY &con_id=CON_ID &source_type=connection &dataset=ds_body_temperature_log &instance=N
Replace the following with your own details: UID
KEY
, API_KEY
, CON_ID
and instance N
.
Replace sbx-api
with api
when making a connection to a real member on the production server (must be authenticated).
To return the data in XML, change UID.json
to UID.xml
.
Example Response
A response to this API request will be structured as follows.
{ "1": { "id": "1", "ds_id": "1", "body_temperature": "36.7", "body_temperature_measurement_location": "3", "body_temperature_measurement_location_description": "Forehead", "body_temperature_timestamp_end": "1648633780", "body_temperature_timestamp_start": "1648633780", "measurement_group": "Activity", "measurement_id": "1", "record_created_timestamp": "1648633780", "record_updated_timestamp": "1648633780", "source_device_type": "PDA", "source_id": "3621-29756", "source_instance": "Google Account 1", "source_name": "Google Fit" } }