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
| Field | Type | Description |
|---|
type | string | Always "NoteDelete" |
locationId | string | Account ID the note belonged to |
id | string | Unique ID of the deleted note |
body | string | Text content of the note at the time of deletion |
contactId | string | ID of the contact this note was associated with |
dateAdded | string | ISO 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 5, 2026