VHD Locations

Get

Retrieves FSLogix Office Container VHDLocation List of a Site Defaults object.

GET/api/RDSDefaultSettings/FSLogix/OfficeContainer/VHDLocations
Query parameters
Response

Success

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

Add

Adds a VHDLocation to the VHDLocation List of the FSLogix Office Container settings.

POST/api/RDSDefaultSettings/FSLogix/OfficeContainer/VHDLocations
Query parameters
Body

VHDLocation configuration.

vhdLocation*nullable string

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

Response

Created

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

Remove

Remove a VHDLocation from the VHDLocation List of the FSLogix Office Container settings.

DELETE/api/RDSDefaultSettings/FSLogix/OfficeContainer/VHDLocations
Query parameters
Body

VHDLocation configuration.

vhdLocation*nullable string

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

Response

No Content

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

Last updated

Was this helpful?