List child organizationsDeprecated

List all child organizations under the specified parent organization.

Access control

Requires the caller to be an admin in the parent organization (i.e. the one on the path), or any of its ancestors.

Example: Assume an organization hierarchy like: org-a -> org-b -> org-c. To list child organizations under org-b, which means calling 'GET /api/admin/orgs/org-b/orgs', the caller must be an admin in org-a or org-b.

Securityorg-oidc-token
Request
path Parameters
org
required
string (OrgId) [ 3 .. 64 ] characters ^([a-z][a-z0-9-]{1,62}[a-z0-9])$

ID of an organization

Example: my-org
Responses
200

A list of organizations

get/api/admin/orgs/{org}/orgs
Request samples
Response samples
application/json
[
  • {
    • "id": "my-org",
    • "parentId": "my-org",
    • "idp": {},
    • "migrationStatus": "EXCLUSIVE_LOGIN",
    • "adminGroupId": "my-external-group",
    • "isDeleted": false,
    • "adminsCanCreateOrgsInSubtree": false,
    • "adminsCanCreateProjectsInSubtree": false,
    • "allowedClusters": [
      ],
    • "profilesEnabled": true
    }
]