Skip to main content
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 permission features.notes or admin role, plus write access to the note.

Path Parameters

id
string
required
Unique identifier of the note to delete

Response

Returns a boolean indicating successful deletion.
success
boolean
required
Returns true when the note is successfully deleted
curl -X DELETE "https://your-domain.com/api/notes/note_abc123/delete" \
  -H "Authorization: Bearer YOUR_TOKEN"
true

Access Control

  • Users must have features.notes permission 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

Build docs developers (and LLMs) love