Appearance
notes
10 endpoints at a glance
| Method | Path | Summary |
|---|---|---|
GET | /notes | List Notes |
POST | /notes | Create Note |
DELETE | /notes/{note_id} | Delete Note |
GET | /notes/{note_id} | Get Note |
PATCH | /notes/{note_id} | Update Note |
POST | /notes/{note_id}/links | Add Link |
DELETE | /notes/{note_id}/purge | Purge Note |
POST | /notes/{note_id}/restore | Restore Note |
GET | /notes/for-entity | List For Entity |
GET | /notes/trash | List Trash |
notes
List Notes
Create Note
List Trash
List For Entity
Get Note
Delete Note
Update Note
PATCH
/notes/{note_id}
Parameters
Header Parameters
authorization
Path Parameters
note_id*
Type
Requiredstring
Request Body
application/json
JSON "title": "string", "body_md": "string", "tag_ids": [ "string" ], "pinned": true, "notebook_id": "string"
{
}
Responses
Successful Response
application/json
JSON "additionalProperties": "string"
{
}
Restore Note
Purge Note
Add Link
POST
/notes/{note_id}/links
Link a note to an entity (the viewer must be able to read both).
Parameters
Header Parameters
authorization
Path Parameters
note_id*
Type
Requiredstring
Request Body
application/json
JSON "type": "string", "id": "string", "ref": { "additionalProperties": "string" }
{
}
Responses
Successful Response
application/json
JSON "additionalProperties": "string"
{
}