curl -X DELETE "https://your-domain.com/api/notes/note_abc123/delete" \
-H "Authorization: Bearer YOUR_TOKEN"
true
Notes & Folders
Delete Note
DELETE
/
api
/
notes
/
{id}
/
delete
curl -X DELETE "https://your-domain.com/api/notes/note_abc123/delete" \
-H "Authorization: Bearer YOUR_TOKEN"
true
Delete a note by ID.
Authorization
Requires user permissionfeatures.notes or admin role, plus write access to the note.
Path Parameters
Unique identifier of the note to delete
Response
Returns a boolean indicating successful deletion.Returns
true when the note is successfully deletedcurl -X DELETE "https://your-domain.com/api/notes/note_abc123/delete" \
-H "Authorization: Bearer YOUR_TOKEN"
true
Access Control
- Users must have
features.notespermission enabled - User must be the note owner OR have write access via access grants
- Admin users can delete any note
- Deletion is permanent and cannot be undone
- Associated access grants are automatically removed
⌘I