LDAP Backend Management¶
Retrieve the list of available backends¶
-
GET
/api/v1/ldap/backends/
¶ Gets the list of deployed LDAP backends for this instance. Note that only one LDAP Server backend may be deployed on an APIO instance but this LDAP Server backend may itself define different LDAP backends. Read the APIO documentation for a complete description on how to perform this configuration.
Example request:
GET /api/v1/ldap/backends/ HTTP/1.1 Host: example.com Content-Type: "application/json"
Example response:
HTTP/1.1 200 OK Content-Type: "application/json" { "ldapBackends": [ "Customer_LDAP_Concentrator", "Another_LDAP_Connector" ] }
- Response JSON Object:
ldapBackends (array) – a list of LDAP backends that are available by APIO LDAP Server backend configuration
- Status Codes:
200 OK – no error
404 Not Found – no backend could be found.