Clients
Retrieve the client settings
Site ID from which to retrieve the Client settings (optional).
Success
Unauthorized
Not Found
GET /api/ClientSettings HTTP/1.1
Host:
Accept: */*
{
"excludeDirectRDP": "text",
"excludeDirectRDPForVDI": "text",
"sendHDIcons": true,
"replicateSendHDIcons": true,
"enableOverlayIcons": true,
"overlayIcon": [
"0 = None",
"1 = ParallelsRemoteApplication",
"2 = MicrosoftRemoteApp",
"3 = Custom"
],
"showPasswordExpiry": true,
"forceSessionsReset": true,
"tokenValidationExpireMin": 1
}
Modify Client Settings. For each setting, the request has a corresponding parameter. To modify a setting, specify a matching parameter and its value.
The Site ID for which to modify the Client settings (optional).
The site ID. To obtain the ID of a desired site, use the Get-Sites cmdlet.
Exclude Direct RDP Connections for terminal servers.
Exclude Direct RDP Connections for VDI.
Enable or disable Sending HD Icons.
Enable or disable replicate Sending HD Icons.
Enable or disable Overlay Icons.
Overlay Icon Type.
Show or hide Password Expiry reminder.
Enable or disable Force sessions reset when client performs a logoff.
Token Validation Time. The time for a validation token to expire in minutes.
No Content
No content
Unauthorized
Not Found
PUT /api/ClientSettings HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 310
{
"apLock": true,
"siteId": 1,
"excludeDirectRDP": "text",
"excludeDirectRDPForVDI": "text",
"sendHDIcons": true,
"replicateSendHDIcons": true,
"overlayIcon": [
"0 = None",
"1 = ParallelsRemoteApplication",
"2 = MicrosoftRemoteApp",
"3 = Custom"
],
"showPasswordExpiry": true,
"forceSessionsReset": true,
"tokenValidationExpireMin": 1
}
No content
Was this helpful?