/api/notes/
POST
Adds a new note with a name, content, and color representation.
{
"name": "Note Name",
"content": "Note Content",
"color": "green"
}
/api/notes/:noteId
DELETE
Deletes the specified note by its unique identifier.
noteId
: The unique identifier of the note to be deleted.
/api/notes/:noteId
PATCH
Updates an existing note with new content, name, or color.
noteId
: The unique identifier of the note to be updated.
{
"name": "Updated Note Name",
"content": "Updated Note Content",
"color": "red"
}