> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mavioapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete note

> Permanently delete a note.

Permanently deletes a note. This action cannot be undone. You can only delete notes that you created.

<ParamField path="id" type="string" required>
  The unique note identifier (e.g., `nte_a1b2c3d4e5`).
</ParamField>

### Response

<ResponseField name="id" type="string">
  The ID of the deleted note.
</ResponseField>

<ResponseField name="deleted" type="boolean">
  Always `true` for a successful deletion.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
    -H "Authorization: Bearer mvo_live_abc123"
  ```

  ```python Python theme={null}
  result = client.notes.delete("nte_a1b2c3d4e5")
  assert result.deleted is True
  ```

  ```javascript Node.js theme={null}
  const result = await client.notes.delete('nte_a1b2c3d4e5');
  console.log(result.deleted); // true
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "nte_a1b2c3d4e5",
    "deleted": true
  }
  ```
</ResponseExample>
