Description
The StopInfrastructures method sends a request to stop infrastructures.
Parameters
REST example
POST http://localhost:7400/Runtime/v1/Service.svc/StopInfrastructures HTTP/1.1
Accept: application/json
Content-Type: application/json
Cache-Control: nocache
Pragma: nocache
{"d": {
}}
Use case with Java Client
import com.neotys.rest.runtime.client.RuntimeAPIClient;
import com.neotys.rest.runtime.client.RuntimeAPIClientFactory;
public class StartTestExample {
public static void main(String[] args) throws Exception {
final RuntimeAPIClient client = RuntimeAPIClientFactory
.newClient("http://localhost:7400/Runtime/v1/Service.svc/");
client.stopInfrastructures();
}
}