configuration /
system /
ext-auth /
ldap
CLI REST-API
search-base
Base DN is the starting point in the hierarchy at which a search begin
This is a read-write object and valid values are strings with a length of 0-199.
Datatype-Help:
value must be a string.
the length must be between 0 and 199.
See also:
/configuration/system/ext-auth/ldap: LDAP
/configuration/system/ext-auth/ldap/anonymous-bind: anonymous bind
/configuration/system/ext-auth/ldap/bind-user: Distinguished name of the user bind to the LDAP server
/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
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:
{
"search-base": "Meinberg"
}
Example using curl:
curl -X PATCH /api/configuration/system/ext-auth/ldap -d
{
"search-base": "Meinberg"
}