Folder Inclusion

Get

Retrieve FSLogix Profile Container Folder Inclusion List of a Site Defaults object.

GET/api/RDSDefaultSettings/FSLogix/ProfileContainer/FolderInclusion
Query parameters
Response

Success

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

Add

Add a folder to the Folder Inclusion List of the FSLogix Profile Container settings.

POST/api/RDSDefaultSettings/FSLogix/ProfileContainer/FolderInclusion
Query parameters
Body

Folder configuration.

folder*nullable string

Specifies the 'Folder' path to add to the Include/Exclude Folder List.

Response

Created

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

Delete

Remove a folder from the Folder Inclusion List of the FSLogix Profile Container settings.

DELETE/api/RDSDefaultSettings/FSLogix/ProfileContainer/FolderInclusion
Query parameters
Body

Folder configuration.

folder*nullable string

Specifies the 'Folder' path to remove to the Include/Exclude Folder List.

Response

No Content

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

© 2024 Parallels International GmbH. All rights reserved.