Create project
POST
/api/projects
Authorizations
bearerAuth
API token created via POST /api/tokens or the db:create-token CLI command
Type
HTTP (bearer)
Request Body
application/json
JSON
{
"name": "string",
"color": "string"
}
Responses
Created project
application/json
JSON
{
"data": {
"id": 0,
"name": "string",
"owner_id": 0,
"shared": true,
"sort_order": 0,
"color": "string",
"active_count": 0,
"overdue_count": 0,
"created_at": "string"
}
}
POST
/api/projects
