Skip to main content
POST
/
api
/
v1
/
orgs
/
{org}
/
projects
Create a project
curl --request POST \
  --url https://auth.cognite.com/api/v1/orgs/{org}/projects \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "name": "publicdata",
      "clusterName": "westeurope-1",
      "projectAdminGroupId": "my-external-group"
    }
  ]
}
'
{
  "items": [
    {
      "projectAdminGroupId": "my-external-group",
      "name": "publicdata",
      "clusterName": "westeurope-1"
    }
  ]
}

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"

Body

application/json

A request to create a new project

items
object[]
required
Required array length: 1 element

Response

A successfully created project

items
object[]
required
Required array length: 1 element
Last modified on April 23, 2026