SAP Sailing Analytics Webservices API Version 1.0

URL: /api/v1/remoteserverreference/remove

Description:

Removes a remote server reference to the target 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: POST
Output format: json
Mandatory parameters:
remoteServerName, the name for the reference.
Request method: POST
Example: curl -X POST http://127.0.0.1:8889/sailingserver/api/v1/remoteserverreference/remove -d "remoteServerName=MyRemoteServer" -H "Authorization: Basic YWRtaW46YWRtaW4="
produces output:
        {
          "remoteServerName": "1",
          "remoteServerUrl": "http://127.0.0.1:8888",
          "include": "true",
          "eventIds": [
            "0f4a825a-837f-4ea6-a2b6-acb861b410af",
            "1fc9069a-0ee8-4ca9-ba62-4ab6c410c909"
          ]
        }
        
which describes the server reference that got removed.
Back to Web Service Overview