list_workout_dates
Retrieve workout dates from your JEFit fitness data within a specified date range to track exercise frequency and analyze workout patterns.
Instructions
List all workout dates within a date range.
Args: start_date: Start date in YYYY-MM-DD format (required) end_date: End date in YYYY-MM-DD format (optional, defaults to today)
Returns: List of workout dates as strings in YYYY-MM-DD format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"start_date": {
"type": "string"
}
},
"required": [
"start_date"
],
"type": "object"
}