Skip to main content
When a note is deleted from a contact record, HoopAI sends a NoteDelete event to all configured webhook endpoints. Use this event to remove the corresponding entry from external systems, maintain an audit log of deleted notes, or ensure data consistency across integrated platforms.

Payload

FieldTypeDescription
typestringAlways "NoteDelete"
locationIdstringSub-account ID the note belonged to
idstringUnique ID of the deleted note
bodystringText content of the note at the time of deletion
contactIdstringID of the contact this note was associated with
dateAddedstringISO 8601 timestamp when the note was originally created

Example payload

{
  "type": "NoteDelete",
  "locationId": "ve9EPM428h8vShlRW1KT",
  "id": "otg8dTQqGLh3Q6iQI55w",
  "body": "Loram ipsum",
  "contactId": "CWBf1PR9LvvBkcYqiXlc",
  "dateAdded": "2021-11-26T12:41:02.193Z"
}
Last modified on March 4, 2026