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

# Delete Lead Note

> Delete a specific note from a lead

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://app.journeybee.io/api/v1/leads/{leadId}/notes/{noteId}" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json"
  ```
</CodeGroup>

## Path Parameters

<ParamField path="leadId" type="number" required>
  The unique identifier of the lead
</ParamField>

<ParamField path="noteId" type="number" required>
  The unique identifier of the note to delete
</ParamField>

## Response Schema

The API returns a `204 No Content` status code on successful deletion.

## Notes

* Requires API key with `write_access` permission
