> ## Documentation Index
> Fetch the complete documentation index at: https://help.hoopai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Note delete | Webhook events

> Fires whenever a note is permanently removed from a contact in an account.

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

```json theme={null}
{
  "type": "NoteDelete",
  "locationId": "ve9EPM428h8vShlRW1KT",
  "id": "otg8dTQqGLh3Q6iQI55w",
  "body": "Loram ipsum",
  "contactId": "CWBf1PR9LvvBkcYqiXlc",
  "dateAdded": "2021-11-26T12:41:02.193Z"
}
```

## Related

* [Note create](/api-reference/webhooks/note-create) — fires when a new note is added
* [Contacts API](/api-reference/contacts/overview) — manage contacts and their associated notes
