Rest API
Replace "demo.live.enymind.fi" with your own personal live address.
Get all races
http://demo.live.enymind.fi/rest/races
Content-type: application/json
Example response:
[ ["11", "Test competition", "2015-04-15 00:00:00"], ["12", "Enduro race Summer 2015", "2015-03-14 00:00:00"], ["13", "Winter Motocross cup", "2015-02-13 00:00:00"] ]
Get all rounds from race
http://demo.live.enymind.fi/rest/rounds&cid=1
Where parameters:
- cid: race id
Content-type: application/json
Example response:
[ ["1051", "Lähtö 1"], ["1052", "Lähtö 2"], ["1055", "FEEDTEST Run 1"] ]
Get results from a round
http://demo.live.enymind.fi/rest/results&cid=1&rid=1
Where parameters:
- cid: race id
- rid: round id
Content-type: application/json
Example response:
["FEEDTEST Run 1", "00:15:08", "Race!", "qualificationResults", [ ["11193", " ", "6", "Empty", "10", "00:00:22.253", "1"], ["11196", " ", "9", "Empty", "10", "00:00:22.591", "1"], ["11188", " ", "1", "Empty", "10", "00:00:23.300", "1"] ] ]