ProjectsCreate Projects
Projects

POST /projects

Create a new project

curl -X POST "https://api.example.com/v2/projects" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{
  "name": "New Project",
  "description": "Description of the new project",
  "status": "active"
}'
{
  "id": 456,
  "name": "My Awesome Project",
  "description": "A project for building amazing things",
  "status": "active",
  "owner_id": 123,
  "created_at": "2024-03-01T12:00:00Z",
  "updated_at": "2024-12-20T16:45:00Z"
}
POST
/projects
POST
Security Scheme
X-API-Keystring
Required

API key for authentication. Get your API key from the dashboard.

API key for authentication. Get your API key from the dashboard.
Content-Typestring
Required

The media type of the request body

Options: application/json
namestring
Required
Min length: 1 • Max length: 100
descriptionstring
Max length: 500
statusstring
Options: active, draft
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. API key for authentication. Get your API key from the dashboard.

Responses