POST/api/v1/projects/🔒 Auth required
Create a new project (org admin only)
Request body
Model: CreateProjectRequest · Content-Type: application/json
CreateProjectRequest.json
{
"name": "str",
"code": "str"
}Responses
201CreatedProjectResponse
{
"id": "UUID",
"org_id": "UUID",
"name": "str",
"code": "str",
"is_project_specific": "bool",
"created_at": "datetime"
}