DELETE
/
api
/
v1
/
lead-deals
/
{dealId}
/
notes
/
{noteId}
Delete Deal Note
curl --request DELETE \
  --url https://app.journeybee.io/api/v1/lead-deals/{dealId}/notes/{noteId} \
  --header 'Authorization: Bearer <token>'

Authentication

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"

Path Parameters

dealId
number
required
The unique identifier of the deal
noteId
number
required
The unique identifier of the note to delete

Response Schema

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

Notes

  • Requires API key with write_access permission