Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 2.33 KB

File metadata and controls

45 lines (37 loc) · 2.33 KB

Notes Taking

Back-end Technologies (API REST)

Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge

API Contract and Definitions

Endpoints

Notes

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

Tags

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