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.

Deprecated

POST/projects

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

Create a new project within the authenticated organization.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response

application/json

Project created successfully

curl -X POST "https://example.com/projects" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "id": "string",  "name": "string",  "status": "active",  "created_at": "2019-08-24T14:15:22Z",  "updated_at": "2019-08-24T14:15:22Z"}