Post-meal target window analysis
get_meal_window_analysisAssess post-meal glucose response around a bolus event by analyzing the 30-minute pre-meal to 3-hour post-meal window, returning a glucose timeline and associated boluses.
Instructions
A focused look around a single event (typically a meal bolus): exactly 30 minutes before and 3 hours after the timestamp you pass.
Use it to judge a post-meal excursion and how well a dose worked, without pulling whole days. Find the event time first (e.g. from get_enriched_bolus_log), then pass it here.
Glucose values are in the configured unit; times are plain wall clock time (device-local), not UTC.
Returns: targetEvent (the timestamp you passed), unit, a glucoseTimeline array (time, value) across the window, and an associatedBoluses array of enriched bolus records that fall in the window.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| units | No | Optional. Glucose unit for this call. Omit to use the unit configured on the server (OMNI_UNITS). One of: "mmol" (mmol/L) or "mgdl" (mg/dL). Pass only to override the configured unit for this one call. | |
| eventTimestamp | Yes | The concrete ISO 8601 timestamp of the meal/bolus event, in plain wall clock time (device-local) — use the exact wall-clock digits, no UTC conversion. Returned times are likewise wall clock, not UTC. |