CreateHosts

Create Hosts

Create Hosts

POST/api/VDI/HostPool/{id}/CreateHosts
Path parameters
id*integer (int32)

The ID of the target RAS HostPool.

Query parameters
Response

No Content

Request
const response = await fetch('/api/VDI/HostPool/{id}/CreateHosts', {
    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?