v1

latestOpenAPI 3.1.02026-07-245531,0212.1 MB
AD/LDAP Management

List all AD/LDAP Connectors

Returns a list of all AD/LDAP Connectors configured in Druva Console with their details.

get/admanagement/v1/adConnectors

Query parameters

status'connected' | 'not connected'

Specify the status to filter and list AD/LDAP Connectors with the selected status.

  • connected - To filter and list AD/LDAP Connectors which are connected to Druva Cloud.
  • not connected - To filter and list AD/LDAP Connector which are not connected to Druva Cloud.
pageTokenstring

The token to access the next page of results. Use the token value received in the previous response's parameter 'nextPageToken'.

Response

OK

totalinteger

The total number of AD/LDAP Connectors listed on the result page.

nextPageTokenstring

The token to access the next page of results. This parameter will be empty for the last page of results.

Example response

{
  "total": 1,
  "nextPageToken": "MTExMQ==",
  "adConnectorList": [
    {
      "name": "AD_Conn_1",
      "status": "Connected"
    }
  ]
}