DELETE
/
v1
/
notes
/
{id}
curl -X DELETE https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "nte_a1b2c3d4e5",
  "deleted": true
}
Permanently deletes a note. This action cannot be undone. You can only delete notes that you created.
id
string
required
The unique note identifier (e.g., nte_a1b2c3d4e5).

Response

id
string
The ID of the deleted note.
deleted
boolean
Always true for a successful deletion.
curl -X DELETE https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "nte_a1b2c3d4e5",
  "deleted": true
}