List all child organizations under the specified parent organization.
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/v1/orgs/org-b/orgs', the caller must be an
admin in org-a
or org-b
.
A list of organizations
{- "items": [
- {
- "id": "my-org",
- "parentId": "my-org",
- "migrationStatus": "EXCLUSIVE_LOGIN",
- "adminGroupId": "my-external-group",
- "isDeleted": false,
- "adminsCanCreateOrgsInSubtree": false,
- "adminsCanCreateProjectsInSubtree": false,
- "allowedClusters": [
- "westeurope-1",
- "asia-northeast1-1"
], - "profilesEnabled": true
}
], - "nextCursor": "string"
}