# notetaker.deleted

Source: https://developer.nylas.com/docs/reference/notifications/notetaker/notetaker-deleted/

Sent when a Notetaker bot is deleted, its associated event is cancelled, or its settings are set to null.

**Recommended action:** Remove the Notetaker from your records.

## data.object fields

- `id` (string) **(required)** - Unique identifier for the deleted Notetaker bot.
- `grant_id` (string) - The grant ID that owned this Notetaker.
- `object` (string) **(required)** (notetaker) - Always `notetaker`.
- `event` (object) - Calendar event that was associated with this Notetaker.
  - `ical_uid` (string) - iCalendar UID of the associated event.
  - `event_id` (string) - Nylas event ID of the associated event.
  - `master_event_id` (string) - Master event ID for recurring events.

## Example payload

```json
{
  "specversion": "1.0",
  "type": "notetaker.deleted",
  "source": "/nylas/notetaker",
  "id": "<WEBHOOK_ID>",
  "time": 1737500936,
  "data": {
    "application_id": "<NYLAS_APPLICATION_ID>",
    "object": {
      "id": "<NOTETAKER_ID>",
      "grant_id": "<NYLAS_GRANT_ID>",
      "object": "notetaker",
      "event": {
        "ical_uid": "<ICAL_UID>",
        "event_id": "<EVENT_ID>",
        "master_event_id": "<EVENT_ID>"
      }
    }
  },
  "webhook_delivery_attempt": 1
}
```
