Getting authentication mode

Format

MethodPOST
URL

/vdi/authmode

Request contentAuthModeRequest
Successful answerAutModeResponse Object
Non-successful answerErrorMessage Object
Unexpected errorHTTP 500

AuthModeRequest Object

Schema

hwaddressStringClient 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_modeString

"active_directory": users are required to authenticate against an LDAP / AD server

"none": users are not authenticated.

statusString

Current host state. One of:

"OK": The request was correctly processed.

"error": Something did not go well. See message for details.

messageStringDescription of the problem

JSON example

{
    "auth_mode": "active_directory",
    "status": "OK"
}