Post finishing bib order to the API. Bibs are expected to be posted in finishing order. Bib numbers will be automatically matched up with finishing times when they are posted using Post Event Finishing Times
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_place 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_place. The following rows each contain a bib number. An example is below.
0 123 456
For 'json', the request should be an object with 'last_finishing_place' and 'bib_nums' properties. The 'bib_nums' property is an array of bib numbers. An example is below.
{ "last_finishing_place": 0, "bib_nums": [ 123, 456 ] }
For 'xml', the request should look like the example below.
<?xml version="1.0" encoding="utf-8" ?> <request> <last_finishing_place>0</last_finishing_place> <bib_nums> <bib_num>123</bib_num> <bib_num>456</bib_num> </bib_nums> </request>
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 |