The close web method is used to close the connection to the Launcher server. The only argument that needs to be passed when calling this method is the client id. This can be done using a HTTP GET request with the client id in the URL as follows:
GET
/launcher/close/1 HTTP/1.1
Host: localhost:9090
Content-Type: application/json
Cache-Control: no-cache
The above example will close the connection of the client with the id number 1.
Alternatively, the close method can be requested by POST, with the message body containing the client id:
POST /launcher/close HTTP/1.1
Host: localhost:9090
Content-Type: application/json
Cache-Control: no-cache
{ "close": { "id":"1" } }