Skip to main content
GET
/
api
/
v1
/
orgs
/
{org}
/
orgs
List child organizations
curl --request GET \
  --url https://auth.cognite.com/api/v1/orgs/{org}/orgs
{
  "items": [
    {
      "id": "my-org",
      "parentId": "my-org",
      "idp": {
        "idpVendor": "AZURE_AD",
        "issuer": "https://login.microsoftonline.com/some-tenant-id/v2.0"
      },
      "adminsCanCreateOrgsInSubtree": false,
      "adminsCanCreateProjectsInSubtree": false,
      "allowedClusters": [
        "westeurope-1",
        "asia-northeast1-1"
      ],
      "adminGroupId": "my-external-group"
    }
  ],
  "nextCursor": "<string>"
}

Path Parameters

org
string
required

ID of an organization The ID of an organization

Required string length: 3 - 64
Pattern: ^([a-z][a-z0-9-]{1,62}[a-z0-9])$
Example:

"my-org"

Response

200 - application/json

A list of organizations

items
object[]
required
nextCursor
string

The cursor to get the next page of results (if available). Note that the server may choose to paginate the results even though no limit can be specified by the user.

Last modified on April 23, 2026