Bulk Create Concept2 Workout Results
concept2_create_results_bulkLog multiple Concept2 workout results to the Logbook in one request. Specify type, date, distance, time, and weight class for each result.
Instructions
Log multiple workout results to the Concept2 Logbook in a single request.
Each result in the array must include the same required fields as concept2_create_result: type, date, distance, time, weight_class.
Args:
user_id: User ID or "me" (default: "me")
results: Array of workout objects, each with required fields:
type: 'rower', 'skierg', or 'bikeerg'
date: YYYY-MM-DD
distance: meters (number)
time: tenths of a second (integer)
weight_class: 'H' or 'L' Optional per result: timezone, workout_type, stroke_rate, heart_rate, calories_total, drag_factor, comments, privacy.
response_format: 'markdown' or 'json'
Returns the created results with their assigned IDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| results | Yes | Array of workout results to create (max 100) | |
| user_id | No | User ID or "me" for the authenticated user | me |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |