User Exclusion

Get

Retrieve FSLogix Profile Container User Exclusion List of a Site Defaults object.

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

Success

Body
accountnullable string

The name of the user/group account the filter is added to.

typeUserType (enum)

User Type

1 = User,2 = Group,3 = ForeignSecurityPrincipal,4 = Computer
sidnullable string

The SID of the user/group account the filter is added to.

Request
const response = await fetch('/api/RDSDefaultSettings/FSLogix/ProfileContainer/UserExclusion', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "account": "text",
    "type": [
      "1 = User",
      "2 = Group",
      "3 = ForeignSecurityPrincipal",
      "4 = Computer"
    ],
    "sid": "text"
  }
]

Add

Add a user to the User Exclusion List of the FSLogix Profile Container settings.

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

User configuration.

accountnullable string

The name of the user/group account to add to the FSLogix Container.

sidnullable string

The SID of the user/group account to add to the FSLogix Container.

Response

Created

Request
const response = await fetch('/api/RDSDefaultSettings/FSLogix/ProfileContainer/UserExclusion', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({}),
});
const data = await response.json();

Delete

Remove a user from the User Exclusion List of the FSLogix Profile Container settings.

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

User configuration.

accountnullable string

The name of the user/group account to remove from the FSLogix Container.

sidnullable string

The SID of the user/group account to remove from the FSLogix Container.

Response

No Content

Request
const response = await fetch('/api/RDSDefaultSettings/FSLogix/ProfileContainer/UserExclusion', {
    method: 'DELETE',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({}),
});
const data = await response.json();

Last updated

Other Resources

Feedback

© 2024 Parallels International GmbH. All rights reserved.