> ## 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 create | Webhook events

> Fires whenever a new note is added to a contact in an account.

Notes in HoopAI are free-text entries attached to a contact record, used to capture conversation history, internal observations, or any context about that contact. When a new note is created — by a team member or an automation — HoopAI sends a `NoteCreate` event to all configured webhook endpoints. This event is useful for syncing notes to external CRMs, logging contact interactions, or triggering workflows based on new information added to a record.

## Payload

| Field        | Type     | Description                                    |
| ------------ | -------- | ---------------------------------------------- |
| `type`       | `string` | Always `"NoteCreate"`                          |
| `locationId` | `string` | Account ID the note belongs to                 |
| `id`         | `string` | Unique ID of the newly created note            |
| `body`       | `string` | Text content of the note                       |
| `contactId`  | `string` | ID of the contact this note is associated with |
| `dateAdded`  | `string` | ISO 8601 timestamp when the note was created   |

## Example payload

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

## Related

* [Note update](/api-reference/webhooks/note-update) — fires when an existing note is edited
* [Note delete](/api-reference/webhooks/note-delete) — fires when a note is removed
* [Contacts API](/api-reference/contacts/overview) — manage contacts and their associated notes
