Post race series results by scoring type ID for each event.
The request format must include the columns race_series_participant_id
, series_points
, and position
.
The response will indicate which race series participant IDs have failed and how many scores were uploaded successfully.
Note: This endpoint only allows OAuth 2.0 authentication and requires the user to be a director of the race series. It is currently in beta and subject to change.
{ "columns": ["race_series_participant_id", "series_points", "position"], "scoring_data": [ [111, 17, 4], [456, 25, 3], [719, 28, 2], [123, 30, 1] ] }
{ "failed_race_series_participant_id": [123], "num_scores_uploaded": 3 }
Parameter | HTTP Method | Default | Description | Datatype |
---|---|---|---|---|
Authorization Required |
HTTP Header | OAuth 2.0 Authorization header (e.g. `Bearer ...`). | string |
|
race_series_id Required |
GET | Race series ID. | uint |
|
race_series_year_id Required |
GET | Race series year ID. | uint |
|
race_id Required |
GET | Race ID. | uint |
|
event_id Required |
GET | Event ID. | uint |
|
scoring_type_id Required |
GET | Scoring Type ID. | uint |
|
request Required |
POST | JSON containing the results that will be uploaded. | string |