api/endpoints/notes-create.md
Create Note
Request
POST /api/v1/notes
Body:
{
"path": "notes/new-note.md",
"content": "# New Note\n\nHello"
}
Example
curl -X POST http://localhost:3000/api/v1/notes \
-H "X-Mino-Key: <API_KEY>" \
-H "Content-Type: application/json" \
-d '{"path":"notes/new-note.md","content":"# New Note\\n\\nHello"}'
Returns 201 on success.