v1

latestOpenAPI 3.0.3Proprietary2026-07-1713346131.7 KB
Projects

Create a new project

Create a new project (requires team owner or admin role)

post/projects

Request body

namestring required

Project name

keystring

Project key (auto-generated if not provided)

color_codestring

Project color (random if not provided)

category_idstring uuid nullable
folder_idstring uuid nullable
start_datestring date nullable
end_datestring date nullable

Example request

{
  "name": "Website Redesign"
}

Response

Project created successfully

doneboolean required

Indicates if the operation was successful

titlestring nullable

Optional response title

messagestring nullable

Optional message (error message or success notification)

Example response

{
  "done": true,
  "body": {
    "name": "Website Redesign",
    "key": "WEB",
    "color_code": "#3498db"
  },
  "message": "Operation completed successfully"
}