/api/note
GET /api/note/{id}
Success: 200 OK
with JSON body. Failure: 404 Not Found
.
{ "content": "...", "is_encrypted": true }
POST /api/note
Success: 201 Created
with JSON body. Failure: 400 Bad Request
.
{ "content": "...", "is_encrypted": true }
{ "id": "aBcDeF" }
PUT /api/note/{id}
Success: 204 No Content
with empty body. Failure: 404 Not Found
.
DELETE /api/note/{id}
Success: 204 No Content
with empty body. Failure: 404 Not Found
.