# notetaker.updated

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

Sent when you update a scheduled Notetaker bot's settings or join time. Only fires while in `scheduled` state.

**Recommended action:** Update your local records with the new Notetaker settings.

## data.object fields

- `id` (string) **(required)** - Unique identifier for the Notetaker bot.
- `grant_id` (string) - The grant ID that owns this Notetaker.
- `meeting_settings` (object) - Updated configuration for what the Notetaker captures.
  - `video_recording` (boolean) - Whether video recording is enabled.
  - `audio_recording` (boolean) - Whether audio recording is enabled.
  - `transcription` (boolean) - Whether transcription is enabled.
  - `summary` (boolean) - Whether AI summary generation is enabled.
  - `action_items` (boolean) - Whether AI action item extraction is enabled.
  - `leave_after_silence_seconds` (integer) - Seconds of silence before the bot automatically leaves the meeting.
- `meeting_provider` (string) (Google Meet, Zoom, Microsoft Teams) - The video conferencing provider.
- `meeting_link` (string) - URL of the meeting the Notetaker will join.
- `join_time` (integer) - Unix timestamp when the Notetaker is scheduled to join.
- `event` (object) - Calendar event 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.
- `object` (string) **(required)** (notetaker) - Always `notetaker`.
- `status` (string) (scheduled) - Current status of the Notetaker bot.
- `state` (string) **(required)** (scheduled) - Current state of the Notetaker bot.

## Example payload

```json
{
  "specversion": "1.0",
  "type": "notetaker.updated",
  "source": "/nylas/notetaker",
  "id": "<WEBHOOK_ID>",
  "time": 1737500936,
  "data": {
    "application_id": "<NYLAS_APPLICATION_ID>",
    "object": {
      "id": "<NOTETAKER_ID>",
      "grant_id": "<NYLAS_GRANT_ID>",
      "meeting_settings": {
        "video_recording": true,
        "audio_recording": true,
        "transcription": true,
        "summary": false,
        "action_items": false,
        "leave_after_silence_seconds": 600
      },
      "meeting_provider": "Google Meet",
      "meeting_link": "https://meet.google.com/abc-defg-hij",
      "join_time": 1737500936,
      "event": {
        "ical_uid": "<ICAL_UID>",
        "event_id": "<EVENT_ID>",
        "master_event_id": "<MASTER_EVENT_ID>"
      },
      "object": "notetaker",
      "status": "scheduled",
      "state": "scheduled"
    }
  },
  "webhook_delivery_attempt": 1
}
```
