UserExclusion

Get

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

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

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

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/RDS/HostPool/{id}/FSLogix/OfficeContainer/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 Office Container settings.

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

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

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/RDS/HostPool/{id}/FSLogix/OfficeContainer/UserExclusion', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "detail": "text",
  "instance": "text"
}

Remove

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

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

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

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/RDS/HostPool/{id}/FSLogix/OfficeContainer/UserExclusion', {
    method: 'DELETE',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "detail": "text",
  "instance": "text"
}

Other Resources

Feedback

© 2024 Parallels International GmbH. All rights reserved.