configuration / system / ext-auth / ldap

CLI REST-API

server-list

The submenu server-list (list of LDAP servers) contains the following:

Menus: none

Objects: none

Commands:
add-server (adds a LDAP server)
delete-server (deletes a server)



See also:
/configuration/system/ext-auth/ldap/server-list/add-server: adds a LDAP server
/configuration/system/ext-auth/ldap/server-list/delete-server: deletes a server

REST-API Support:


This menu is supported by the REST API:

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


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


Method: PATCH
URL: /api/configuration/system/ext-auth/ldap/server-list
Body:
{
  \"objects\": \"new-values\"
}

Example using curl:
curl -X PATCH /api/configuration/system/ext-auth/ldap/server-list
-d "{
  \"objects\": \"new-values\"
}"


Method: POST
URL: /api/configuration/system/ext-auth/ldap/server-list
Body:
{
  \"objects\": \"new-values\"
}

Example using curl:
curl -X POST /api/configuration/system/ext-auth/ldap/server-list
-d "{
  \"objects\": \"new-values\"
}"