SAP Sailing Analytics Webservices API Version 1.0

URL: /api/v1/remoteserverreference[{/name}]

Description:

Lists the remote server references managed by this server


The service requires the requesting user to have permission SERVER:CONFIGURE_REMOTE_INSTANCES:{SERVER_NAME} for the server to which the request is sent.
Webservice Type: GET
Output format: json
Request method: GET
Example 1: curl -X POST http://127.0.0.1:8889/sailingserver/api/v1/remoteserverreference" -H "Authorization: Basic YWRtaW46YWRtaW4="
produces output:
        [
	  {
	    "remoteServerName": "Local8889",
	    "remoteServerUrl": "http://127.0.0.1:8889",
	    "include": true,
	    "eventIds": []
	  },
	  {
	    "remoteServerName": "LYC",
	    "remoteServerUrl": "https://lyc.sapsailing.com",
	    "include": true,
	    "eventIds": [
	      "e611747c-a09a-4f41-b3ca-11ffbfe46c17",
	      "97cac659-6d23-4d86-9b60-44c1447b6e88"
	    ]
	  }
	]
        
which describes the server references currently known by this server.
Example 2: curl -X POST http://127.0.0.1:8889/sailingserver/api/v1/remoteserverreference/Local8889" -H "Authorization: Basic YWRtaW46YWRtaW4="
produces output:
	  {
	    "remoteServerName": "Local8889",
	    "remoteServerUrl": "http://127.0.0.1:8889",
	    "include": true,
	    "eventIds": []
	  }
        
which describes the single server reference found under the name Local8889.
Back to Web Service Overview