Kill

Kill

Invoke the VDI Process Command to send the Kill command to the Process with specified Process ID.

POST/api/Provider/{providerId}/VM/{vmId}/Host/Process/{id}/Kill
Path parameters
providerId*integer (int32)

The ID of the provider.

vmId*string

VM ID.

id*integer (int32)

Process ID.

Response

No Content

Request
const response = await fetch('/api/Provider/{providerId}/VM/{vmId}/Host/Process/{id}/Kill', {
    method: 'POST',
    headers: {},
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "status": 1,
  "detail": "text",
  "instance": "text",
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Was this helpful?