SAP Sailing Analytics Webservices API Version 1.0

URL: /api/v1/leaderboards/{name}/device_mappings/end

Description:

Tracking App Device Checkout on leaderboard


Webservice Type: REST
Input format: JSON (application/json)
Output format: HTTP 200
Mandatory parameters: None
Optional parameters: secret: The regatta registration link secret can be included as an alternative to a bearertoken, if it is equal to the one stored in the regatta associated to the leaderboard, the caller will be permitted ignoring all normal permission checks
Request method: POST
Example competitor: POST http://sapsailing.com/api/v1/leaderboards/{name}/device_mappings/end

{
    "competitorId" : "af855a56-9726-4a9c-a77e-da955bd289bg",
    "deviceUuid" : "af855a56-9726-4a9c-a77e-da955bd289bf",
    "toMillis" : 1415624564719
}
			
Example mark: POST http://sapsailing.com/api/v1/leaderboards/{name}/device_mappings/end

{
    "markId" : "af855a56-9726-4a9c-a77e-da955bd289bg",
    "deviceUuid" : "af855a56-9726-4a9c-a77e-da955bd289bf",
    "secret" : "0257p9;aso8ry;hfdee",
    "toMillis" : 1415624564719
}
            
Example boat: POST http://sapsailing.com/api/v1/leaderboards/{name}/device_mappings/end

{
    "boatId" : "af855a56-9726-4a9c-a77e-da955bd289bg",
    "deviceUuid" : "af855a56-9726-4a9c-a77e-da955bd289bf",
    "toMillis" : 1415624564719
}
            
Back to Web Service Overview