Post finishing times to the API. Finishing times are expected to be posted in order. Finishing times will be automatically matched up with bib numbers when they are posted using Post Event Finishing Bib Order
The individual_result_set_id parameter is required if you have multiple result sets for an event. If not set, the existing result set will be used if it exists. Otherwise, a new result set will be automatically created.
Each request needs to include the last finishing_time_id from the previous response. This ensures that requests are received in order. If there is no data yet, use zero.
For 'csv', the first row should be the last finishing_time_id. The following rows each contain a finishing time. An example is below.
0 17:00.0 17:00.2
For 'json', the request should be an object with 'last_finishing_time_id' and 'finishing_times' properties. The 'finishing_times' property is an array of finishing times. An example is below.
{ "last_finishing_time_id": 0, "finishing_times": [ "17:00.0", "17:00.2" ] }
For 'xml', the request should look like the example below.
<finishing_times_upload> <last_finishing_time_id>0</last_finishing_time_id> <finishing_times> <finishing_time>17:00.0</finishing_time> <finishing_time>17:00.1</finishing_time> </finishing_times> </finishing_times_upload>
Parameter | HTTP Method | Default | Description | Datatype |
---|---|---|---|---|
api_key |
GET | API Key | string |
|
api_secret |
GET | API Secret | string |
|
tmp_key |
GET | Temporary API Key from login API call. This should NOT be used in combination with API Key. | string |
|
tmp_secret |
GET | Temporary API Secret from login API call. This should NOT be used in combination with API Secret. | string |
|
rsu_api_key |
GET | API v2 key. If used, you must send the API secret in an HTTP header named X-RSU-API-SECRET. | string |
|
sp_api_key |
GET | Super partner API key. If used, you must send the API secret in an HTTP header named X-RSU-API-SECRET. | string |
|
X-RSU-API-SECRET |
HTTP Header | API v2 or super partner secret. | string |
|
format |
GET | xml | Format of response. The default if not sent is `xml`, but `json` is preferred. | format |
Parameter | HTTP Method | Default | Description | Datatype |
---|---|---|---|---|
race_id Required |
POST | ID of race. | uint |
|
event_id Required |
POST | ID of event. | uint |
|
individual_result_set_id |
POST | ID of result set. | uint |
|
request_format |
POST | xml | Format of request. The default if not sent is `xml`, but `json` is preferred. | format |
request Required |
POST | Request in proper format. | string |