Endpoints for the main HTTP operations in Notes
| Method | URL | Description |
|---|---|---|
| GET | /api/notes |
All Notes |
| GET | /api/notes/{id} |
Note by ID |
| POST | /api/notes |
Create a Note |
| DELETE | /api/notes/{id} |
Delete by ID |
| PUT | /api/notes/{id} |
Change by ID |
Endpoints for the main HTTP operations in Tags
| Method | URL | Description |
|---|---|---|
| GET | /api/tags |
List all tags |
| POST | /api/tags |
Create a new tag |
| DELETE | /api/tags/{name} |
Delete tag by name |
| PUT | /api/tags/{name} |
Update tag by name |