Actions
Bug #110
openwhen creating projects via API, the "completed" field of the request body is ignored
Status:
New
Priority:
Normal
Assignee:
-
Start date:
01/01/2026
Due date:
% Done:
0%
Estimated time:
Description
When creating a project, the completed attribute will have a value of false even when sending a "true" value in the request body
Request Body
{
"title": "Completed task",
"completed": true
}
Response Body
{
"completed": false,
"completed_at": null,
"created_at": "2026-01-01T17:31:35.683815",
"description": null,
"id": 32,
"principles": [],
"project_id": null,
"tags": [],
"title": "Completed task",
"updated_at": "2026-01-01T17:31:35.683818",
"user_id": 2
}
Note the NULL value for "completed"
Actions