v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-31135175384.2 KB
Projects

Create a project

Deprecated: use POST /org/projects instead. This route will be removed on 2026-11-24.

Create a new project within the authenticated organization.

post/projects

Request body

namestring required

Project name (1-255 Unicode code points)

Example request

{
  "name": "staging"
}

Response

Project created successfully

idstring required

Unique project identifier

namestring required

Project name

status'active' | 'archived' required

Project status

created_atstring date-time required

When the project was created

updated_atstring date-time required

When the project was last updated

Example response

{
  "id": "proj_abc123",
  "name": "production",
  "status": "active"
}