v1

latestOpenAPI 3.1.0Apache 2.02026-07-17870411.0 KB
Group Management

Retrieve all LDAP groups

Returns a list of all groups from the configured LDAP directory with their members

get/api/ldap/groups

Response

Successfully retrieved all LDAP groups

successboolean
messageobject

Dictionary of group names to group information

Example response

{
  "success": true,
  "message": {
    "developers": {
      "group_dn": "cn=developers,ou=group,dc=EDH,dc=local",
      "members": [
        "john.doe",
        "jane.smith"
      ]
    },
    "admins": {
      "group_dn": "cn=admins,ou=group,dc=EDH,dc=local",
      "members": [
        "admin"
      ]
    }
  }
}