Getting authentication mode
Format
Method | POST |
---|---|
URL | /vdi/authmode |
Request content | AuthModeRequest |
Successful answer | AutModeResponse Object |
Non-successful answer | ErrorMessage Object |
Unexpected error | HTTP 500 |
AuthModeRequest Object
Schema
hwaddress | String | Client device or browser unique identifier. Must be a chain with 8-50 characters in [ 'a'-'z', 'A'-'Z',, '-', '_', ':'] |
---|
JSON example
{ "hwaddress":"1234-5678-90AB" }
AuthModeResponse Object
Schema
auth_mode | String | "active_directory": users are required to authenticate against an LDAP / AD server "none": users are not authenticated. |
---|---|---|
status | String | Current host state. One of: "OK": The request was correctly processed. "error": Something did not go well. See message for details. |
message | String | Description of the problem |
JSON example
{ "auth_mode": "active_directory", "status": "OK" }