curl --request GET \
--url https://auth.cognite.com/api/v1/orgs/{org}/projects{
"items": [
{
"name": "publicdata",
"apiUrl": "https://api.cognitedata.com"
}
],
"nextCursor": "<string>"
}List all projects in the specified organization.
If includeAdminProperties is true, it requires the caller to be an admin in the organization, or any of its ancestors.
Otherwise, it requires the caller to be a member of the organization.
Example: Assume an organization hierarchy like: org-a -> org-b -> org-c.
To list projects in org-c, which means calling ‘GET /api/v1/orgs/org-c/projects?includeAdminProperties’,
the caller must be an admin in org-a, org-b or org-c.
curl --request GET \
--url https://auth.cognite.com/api/v1/orgs/{org}/projects{
"items": [
{
"name": "publicdata",
"apiUrl": "https://api.cognitedata.com"
}
],
"nextCursor": "<string>"
}ID of an organization The ID of an organization
3 - 64^([a-z][a-z0-9-]{1,62}[a-z0-9])$"my-org"
Whether to include admin properties of the projects in the response.
Was this page helpful?