Show configuration details of an LDAP object
Purpose
Shows the configuration details of an external LDAP server.URI
Use the Eclipse Amlen REST API GET method with the following Eclipse Amlen configuration URI:
http://<admin-endpoint-IP:Port>/ima/v1/configuration/LDAP
Related Commands
Example
Shows the details of the external LDAP server by using cURL:curl -X GET http://127.0.0.1:9089/ima/v1/configuration/LDAP
Example successful response to the GET method that was used to show configuration details of an LDAP object:
{
"Version": "v1",
"LDAP": {
"EnableCache": true,
"CacheTimeout": 10,
"Enabled": false,
"NestedGroupSearch": false,
"MaxConnections": 100,
"URL": "",
"BindDN": "",
"GroupCacheTimeout": 300,
"UserSuffix": "",
"GroupIdMap": "",
"GroupMemberIdMap": "",
"UserIdMap": "",
"GroupSuffix": "",
"BaseDN": "",
"Certificate": "",
"IgnoreCase": true,
"Timeout": 30,
"Verify": false
}
}