configuration / system / ext-auth / ldap

CLI REST-API

bind-user

Distinguished name of the user bind to the LDAP server
This is a read-write object and valid values are strings with a length of 0-254.

Datatype-Help:
value must be a string.
the length must be between 0 and 254.



See also:
/configuration/system/ext-auth/ldap: LDAP
/configuration/system/ext-auth/ldap/anonymous-bind: anonymous bind
/configuration/system/ext-auth/ldap/bind-password: Password of a user that will bind to the LDAP server
/configuration/system/ext-auth/ldap/search-scope: search scope
/configuration/system/ext-auth/ldap/search-base: Base DN is the starting point in the hierarchy at which a search begin

REST-API Support:


This object is supported by the REST API:

Method: GET
URL: /api/configuration/system/ext-auth/ldap


Example using curl:
curl /api/configuration/system/ext-auth/ldap


Method: PATCH
URL: /api/configuration/system/ext-auth/ldap
Body:
{
  "bind-user": "Meinberg"
}

Example using curl:
curl -X PATCH /api/configuration/system/ext-auth/ldap -d
{
  "bind-user": "Meinberg"
}