SAP Sailing Analytics Webservices API Version 1.0

URL: /api/v1/mark/revokeMarkOnRegatta

Description:

Revokes a Mark from a specified Regatta


Webservice Type: REST
Intput format: Json
Output format: -
Request method: POST
Mandatory parameters: regattaName: the name of the regatta on that the mark will be revoked.
raceColumnName: the name of the specific race.
fleetName: the name of the fleet.
markId: the UUID of the mark.
Optional parameters: -
Examples: Request:
            {
                "regattaName":"MarkApiTestEvent",
                "raceColumnName":"R1",
                "fleetName":"Default",
                "markId":"3de00524-f41f-427e-a4bc-8518d7a7a705"
            }
            
Response:
            -
            
Possible Error Responses: Status Code 404 - NOT_FOUND:
  • Could not find a regatta with name '#regattaName#'.
  • Could not find a race with raceColumn '#raceColumnName#' and fleet '#fleetName#' in regatta '#regattaName#'.
  • Could not find a mark with id '#markId#' in regatta '#regattaName#' and race '#raceColumnName#'.
  • No log found for regatta '#regattaName#'.
Status Code 409 - CONFLICT:
  • Mark with id '#markId#' is already used in race #raceColumnName#.
  • Race with raceColumn '#raceColumn#' and fleet '#fleetName#' in regatta '#regattaName#' is already tracked.
Back to Web Service Overview