configuration / system / ext-auth / ldap

CLI REST-API

search-scope

search scope
This is a read-write object and valid values are:




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-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:
{
  "search-scope": "base"
}

Example using curl:
curl -X PATCH /api/configuration/system/ext-auth/ldap -d
{
  "search-scope": "base"
}