Vitals Timeseries
daily.data.glucose.updated

Each sample is uniquely identified by a triple key (3-tuple) comprising of its resource type name, its source (ID or slug) and its timestamp. e.g., (glucose, fitbit, 2023-01-23T12:34:56Z).

If multiple samples are received at the same triple key, the last sample received replaces all its previous versions.

Properties

event_typerequired
const string

Constant: daily.data.glucose.updated

datarequired
TimeseriesData
datarequired
ClientFacingTimeseries[]
id
integer | null

Measurement id. Note, this field has been deprecated and is no longer used

timestamprequired
string

The timestamp of the measurement.

timezone_offset
integer | null

Time zone UTC offset of the measurement. Positive offset indicates east of UTC; negative offset indicates west of UTC; and null indicates the time zone information is unavailable at source.

valuerequired
number

The value of the measurement.

type
string | null

The reading type of the measurement, e.g. cuff, scale, manual_scan, etc.

unitrequired
string

The unit of the value. We use SI units where possible, e.g. mmol/L for glucose/cholesterol, bpm for heart rate, etc.

source_idrequired
integer
sourcerequired
ClientFacingSource
namerequired
string

Name of source of information

slugrequired
string

Slug for designated source

logorequired
string

URL for source logo

user_idrequired
string
user_keyrequired
string

Examples

{
  "event_type": "daily.data.glucose.updated",
  "data": {
    "data": [
      {
        "timestamp": "2023-05-26T20:56:47.037439+00:00",
        "timezone_offset": null,
        "value": 0.5,
        "type": "automatic | manual_scan",
        "unit": "mmol/L"
      }
    ],
    "source_id": 1,
    "source": {
      "name": "Oura",
      "slug": "oura",
      "logo": "https://logo_url.com"
    },
    "user_id": "cd97b6e0-09cb-4c1d-911e-ade8a04a5fbf",
    "user_key": "4d840fe2-9624-4323-b1a7-0ff5c4b8d7d2"
  }
}