Add race series participants by user info.
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": [ "user_defined_id", "first_name", "last_name", "gender", "dob", "age", "email", "phone", "address1", "city", "state", "zipcode", "countrycode" ], "participants": [ [null, "Dolores", "Nguyen", "F", "1981-06-25", 40, "dolores.nguyen@example.com", "856-655-7878", "1899 Saddle Dr", "Moorestown", "NJ", "08057", "US"], ["abc-123", "John", "Smith", "M", "1979-04-12", 45, "michael.smith@example.com", "415-555-1234", "1234 Pine St", "San Francisco", "CA", "94107", "US"] ] }
{ "race_series_participants": [ { "row": 1, "race_series_participant_id": 3456 }, { "row": 2, "race_series_participant_id": 3457 }, ] }
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 |
|
request Required |
POST | JSON containing the participants that will be uploaded. | string |