Create README.md

This commit is contained in:
Tokishu
2025-05-15 01:42:23 +02:00
committed by GitHub
parent 16ba0ef41c
commit 4b108e1ae1
+26
View File
@@ -0,0 +1,26 @@
# Spring Boot Note Api
I'm testing spring boot, and it might become my main framework for building APIs
## Endpoits
### `GET /api/notes` - Get all notes
### `GET /api/note/{id}` - Find note by id
### `POST /api/note` - Add a new note
```
{
"name":"What should I buy?",
"text":"Tanya's note"
}
```
### `PUT /note/{id}` - Update note
```
{
"name":"What should I buy?",
"text":"I bought the apple!"
}
```
### `DELETE /note/{id}` - Delete note