CancelPendingReboot

Cancel Pending Reboot

Cancel a pending reboot set by RAS Scheduler

POST/api/RDS/Host/{id}/CancelPendingReboot
Path parameters
id*integer (int32)

The ID of a RD Session Host server.

Response

No Content

Request
const response = await fetch('/api/RDS/Host/{id}/CancelPendingReboot', {
    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?