latestOpenAPI 3.1.02026-08-22154287463.4 KB

858365328f92

Projects

Update a project by ID or name

Deprecated: use PATCH /org/projects/{id_or_name} instead. This route will be removed on 2026-11-24.

Update a project's name or status.

patch/projects/{id_or_name}

Path parameters

id_or_namestring required

Project ID or name

Request body

namestring

New project name (1-255 Unicode code points; cannot contain / or %)

status'active' | 'archived'

New project status

Response

Project updated

created_atstring date-time required

When the project was created

idstring required

Unique project identifier

namestring required

Project name

status'active' | 'archived' required

Project status

updated_atstring date-time required

When the project was last updated

Example response

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