> ## 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 Deal Note

> Delete a specific note from a deal

## Authentication

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

## Path Parameters

<ParamField path="dealId" type="number" required>
  The unique identifier of the deal
</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
