Test LDAP Configuration

post

/api/v1/configuration/ldapConfig/test

Tests the specified LDAP configuration.

Request

Supported Media Types
Body ()
LDAP Configuration details
Root Schema : LdapConfigDetail
Type: object
LDAP Configuration details
Show Source
Back to Top

Response

Supported Media Types

200 Response

OK

400 Response

Bad Request

401 Response

Not authorized

404 Response

Invalid parameters

409 Response

Operation conflict
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source
Nested Schema : errors
Type: array
list of errors
Show Source
Nested Schema : warnings
Type: array
list of warnings
Show Source
Back to Top

Examples

This endpoint is used to test the specified LDAP configuration in your Blockchain platform.

The following example shows how to test an LDAP configuration by submitting a POST request on the REST resource using cURL.

curl -X POST \
  http://<hostname>:<port>/api/v1/configuration/ldapConfig/test \
  -H 'Content-Type: application/json' \
  -d '<Request Body>'

Example of the Request Body

The following example shows the contents of the request body in JSON format:

{
  "ldapId": "a455c6ab-dc36-4553-90c4-bbbb3532bc50",
  "ldapName": "localLDAP",
  "ldapType": "openLDAP",
  "ldapHost": "10.0.2.15",
  "ldapPort": 389,
  "ldapTLSEnabled": false,
  "ldapBaseDN": "dc=example,dc=org",
  "ldapBindDN": "cn=admin,dc=example,dc=org",
  "ldapBindPassword": "awdrTHUK1!",
  "userNameAttribute": "cn",
  "userClassName": "simpleSecurityObject",
  "groupNameAttribute": "cn",
  "groupMembershipAttribute": "member",
  "groupClassName": "groupOfNames",
  "connectTimeout": 30000
}

Example of the Response Body

The following example shows the contents of the response body in JSON format:

{
    "status": "200",
    "message": "LDAP Server Connectivity test was successful"
}
Back to Top