Notes API
Complete API reference for notes management
Create Note
POST /trpc/notes.create
{
"content": "# My Note\n\nContent here",
"title": "My Note",
"autoEnrich": true
}
List Notes
GET /trpc/notes.list
{
"limit": 20,
"offset": 0
}
Get Note
GET /trpc/notes.get
{
"noteId": "note-123"
}
Update Note
POST /trpc/notes.update
{
"noteId": "note-123",
"content": "# Updated Note\n\nNew content"
}
Delete Note
POST /trpc/notes.delete
{
"noteId": "note-123"
}
Next: See Chat API for conversational interface.