18 lines
337 B
HTTP
18 lines
337 B
HTTP
### Create a task
|
|
POST http://localhost:8080/api/tasks
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"title": "Clean the kitchen",
|
|
"points": 10,
|
|
"status": "väntande",
|
|
"recurrence": "weekly",
|
|
"dueDate": "2026-03-01"
|
|
}
|
|
|
|
### Retrieve all tasks
|
|
GET http://localhost:8080/api/tasks
|
|
|
|
### Retrieve all tasks
|
|
GET http://localhost:8080/api/health
|