get_rides_for_week
Retrieve your weekly bike rides from VanMoof by providing any date within the desired week to access your cycling activity data.
Instructions
Retrieves rides for a specific week from the vanMoof API.
Args:
date_in_week: Any date within the week in format "YYYY-MM-DD".
If None, uses the current date.
Returns:
The rides for the specified week if authentication is successful, otherwise None.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_in_week | No |
Input Schema (JSON Schema)
{
"properties": {
"date_in_week": {
"default": "",
"title": "Date In Week",
"type": "string"
}
},
"type": "object"
}