Skip to content

Latest commit

 

History

History
75 lines (56 loc) · 2.06 KB

File metadata and controls

75 lines (56 loc) · 2.06 KB
sidebar_position 33

Get all external groups

Description

Get all external groups from your active directory/LDAP.

URL

http://{Admin API IP}:{port#}/api/v1/integrations/IdentityManagement/groups

HTTP method

GET

Request

Headers

Example header format:

Authorization: Basic <authorization token returned from the login method>

Content-Type: application/json

Query parameters
Parameter Description/Comments
paginationProperties.limit (integer) Number of results to return per page. Can retrieve up to 250 results per page. Default if unspecified: 50. Optional.
Default value : 50
paginationProperties.sort-by (string) Field to use to sort the results.
Default value : Name
paginationProperties.sort-order (integer) 1 for ascending, -1 for descending. Defaults to ascending. Optional.
Default value : 1
paginationProperties.cursor (string) When paging, the response will include a cursor field. Use the cursor to get next set of results. Optional.
paginationProperties.filter (string) String to use to filter for domains containing this string. For example: "lab" would return lab1, testlab, olabo. Optional.

Response

Response example
{
    "Groups": [
        {
            "Name": "Administrators",
            "DistinguishedName": "CN=Administrators,CN=Builtin,DC=qualisystems,DC=local"
        },
        {
            "Name": "ADSyncAdmins",
            "DistinguishedName": "CN=ADSyncAdmins,CN=Users,DC=qualisystems,DC=local"
        },
        {
            "Name": "Azure_DevOps_Cloud_Admins",
            "DistinguishedName": "CN=Azure_DevOps_Cloud_Admins,OU=00.00.Quali.Azure.Security.Groups,OU=00.00.Microsoft-Azure,OU=00.00.Cloud.Services,OU=00.QUALI.WW.DATA.CENTERS,DC=qualisystems,DC=local"
        }
    ],
    "Cursor": "QXp1cmVfRGV2T3BzX0Nsb3VkX0FkbWlucw=="
}
Response code
200 OK