CCDLocations

Get

Retrieves FSLogix Office Container CCDLocation List of a session server with the specified ID.

GET/api/VDI/HostPool/{id}/FSLogix/OfficeContainer/CCDLocations
Path parameters
id*integer (int32)

The ID of a session server for which to retrieve the FSLogix Office Container settings.

Response

Success

Body
itemsstring
Request
const response = await fetch('/api/VDI/HostPool/{id}/FSLogix/OfficeContainer/CCDLocations', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  "text"
]

Add

Add a folder to the CCDLocation List of the FSLogix Office Container settings.

POST/api/VDI/HostPool/{id}/FSLogix/OfficeContainer/CCDLocations
Path parameters
id*integer (int32)

The ID of a session server for which to modify the FSLogix Office Container settings.

Body

CCDLocation configuration.

ccdLocation*nullable string

Specifies the 'CCDLocation' path to add to the CCDLocation List.

Response

Created

Request
const response = await fetch('/api/VDI/HostPool/{id}/FSLogix/OfficeContainer/CCDLocations', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({
      "ccdLocation": "text"
    }),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "status": 1,
  "detail": "text",
  "instance": "text",
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Remove

Remove a folder from the CCDLocation List of the FSLogix Office Container settings.

DELETE/api/VDI/HostPool/{id}/FSLogix/OfficeContainer/CCDLocations
Path parameters
id*integer (int32)

The ID of a session server for which to modify the FSLogix Office Container settings.

Body

CCDLocation configuration.

ccdLocation*nullable string

Specifies the 'CCDLocation' path to remove from the CCDLocation List.

Response

No Content

Request
const response = await fetch('/api/VDI/HostPool/{id}/FSLogix/OfficeContainer/CCDLocations', {
    method: 'DELETE',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({
      "ccdLocation": "text"
    }),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "status": 1,
  "detail": "text",
  "instance": "text",
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Was this helpful?