export-route-gpx
Export specific Strava routes in GPX format to a local directory using the route ID for offline access or other applications.
Instructions
Exports a specific Strava route in GPX format and saves it to a pre-configured local directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
routeId | Yes | The ID of the Strava route to export. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"routeId": {
"description": "The ID of the Strava route to export.",
"type": "string"
}
},
"required": [
"routeId"
],
"type": "object"
}