Connection and Authentication
Retrieve a list of all the settings for RAS authentication
Site ID for which to retrieve all the settings for RAS authentication (optional)
OK
Unauthorized
Not Found
GET /api/ConnectionAuthentication HTTP/1.1
Host:
Accept: */*
{
"authType": [
"1 = UsernamePassword",
"2 = SmartCard",
"3 = UsernamePasswordOrSmartCard",
"4 = Web",
"8 = WebCredentials"
],
"allTrustedDomains": true,
"domain": "text",
"useClientDomain": true,
"forceNetBIOSCreds": true,
"replicateSettings": true,
"useChangePasswordURL": true,
"changePasswordURL": "text",
"siteId": 1
}
Update RAS authentication settings
ID of the site for which the RAS authentication settings will be updated
Update the authentication settings
Authentication Type
Whether to use all trusted domains.
Domain name.
Whether to use the client domain, if specified.
Whether to force clients to use NetBIOS credentials.
Whether to replicate settings to other sites.
Enable use custom link for the "Change domain password" option.
Custom link for the "Change domain password" option.
No Content
Unauthorized
Not Found
PUT /api/ConnectionAuthentication HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 287
{
"authType": [
"1 = UsernamePassword",
"2 = SmartCard",
"3 = UsernamePasswordOrSmartCard",
"4 = Web",
"8 = WebCredentials"
],
"allTrustedDomains": true,
"domain": "text",
"useClientDomain": true,
"forceNetBIOSCreds": true,
"replicateSettings": true,
"useChangePasswordURL": true,
"changePasswordURL": "text"
}
No content
Retrieve a list of all the Trusted Domains.
Site ID for which to retrieve all the Trusted Domains (optional)
OK
Unauthorized
Not Found
GET /api/ConnectionAuthentication/TrustedDomain HTTP/1.1
Host:
Accept: */*
[
"text"
]
Last updated
Was this helpful?