Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

hwaddressStringClient device or browser unique identifier. Must be a chain with 8-50 characters in [ 'a'-'z', 'A'-'Z',, '-', '_', ':']

JSON example


Code Block
languagejs
{
        "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


Code Block
languagejs
{
    "auth_mode": "active_directory",
    "status": "OK"
}


...