get_glucose_stats
Calculate glucose statistics including count, average, minimum, and maximum values for a user within a specified date range to identify trends and patterns for health monitoring.
Instructions
Get glucose statistics (count, average, min, max) for a user within a date range. Useful for understanding glucose trends and patterns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date in ISO 8601 format. Optional. | |
startDate | No | Start date in ISO 8601 format. Optional. | |
userId | No | User identifier. Defaults to user_12345abcdef67890 if not specified. |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in ISO 8601 format. Optional.",
"type": "string"
},
"startDate": {
"description": "Start date in ISO 8601 format. Optional.",
"type": "string"
},
"userId": {
"description": "User identifier. Defaults to user_12345abcdef67890 if not specified.",
"type": "string"
}
},
"required": [],
"type": "object"
}