Add create note

This commit is contained in:
2020-04-19 23:27:43 +02:00
parent 2a142504a5
commit 0335c1eb08
4 changed files with 91 additions and 1 deletions
+13 -1
View File
@@ -11,4 +11,16 @@ Content-Type: application/json
### Get notes
GET http://localhost:8081/notes
Authorization: Bearer {{token}}
Authorization: Bearer {{token}}
### Create a note
POST http://localhost:8081/notes/babar
Content-Type: application/json
Authorization: Bearer {{token}}
{
"tags": [
"Test",
"Dev"
]
}