docs: add API structure

This commit is contained in:
Kai Folf 2025-03-13 11:11:09 +07:00
parent 0c0f71a72e
commit cb4530c1ba

30
src/app/api/README.md Normal file
View file

@ -0,0 +1,30 @@
# Todoist API
## Create Task
POST /api/task
## Read Task
GET /api/task -> List all task
GET /api/task/[taskId] -> Get specific task
## Update Task
PATCH /api/task/[taskId]
## Delete Task
DELETE /api/task/[taskId]
## Task Structure
*Subject to change*
```js
{
taskId: number,
userId: string,
title: string,
description: string,
dueDate: Date,
createdAt: Date,
modifiedAt: Date,
markedAsDone: boolean,
}
```