CCDLocations

Get

Retrieve FSLogix Profile Container CCDLocation List of a Site Defaults object.

GET/api/VDIDefaultSettings/FSLogix/ProfileContainer/CCDLocations
Query parameters
Response

Success

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

Add

Add a CCDLocation to the CCDLocation List of the FSLogix Profile Container settings.

POST/api/VDIDefaultSettings/FSLogix/ProfileContainer/CCDLocations
Query parameters
Body

CCDLocation configuration.

ccdLocation*nullable string

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

Response

Created

Request
const response = await fetch('/api/VDIDefaultSettings/FSLogix/ProfileContainer/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"
}

Delete

Remove a CCDLocation from the CCDLocation List of the FSLogix Profile Container settings.

DELETE/api/VDIDefaultSettings/FSLogix/ProfileContainer/CCDLocations
Query parameters
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/VDIDefaultSettings/FSLogix/ProfileContainer/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?