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

Authentication

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"

Path Parameters

leadId
number
required
The unique identifier of the lead
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