# notetaker.created

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

Sent when you create or schedule a Notetaker bot. For ad-hoc meetings, `join_time`, `event.ical_uid`, and `event.event_id` are omitted.

**Recommended action:** Store the Notetaker ID and confirm the bot is scheduled or joining.

## 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) - 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.
  - `summary_settings` (object) - Custom instructions for summary generation.
    - `custom_instructions` (string) - Prompt instructions for the AI summary.
  - `action_items` (boolean) - Whether AI action item extraction is enabled.
  - `action_items_settings` (object) - Custom instructions for action item extraction.
    - `custom_instructions` (string) - Prompt instructions for action item extraction.
  - `deduplication_settings` (object) - Settings for deduplicating Notetaker bots across a workspace.
    - `scope` (string) (workspace) - Deduplication scope.
    - `key` (string) - Deduplication key.
    - `workspace_id` (string) - Workspace ID for scoped deduplication.
  - `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. Omitted for ad-hoc meetings.
- `event` (object) - Calendar event associated with this Notetaker. Some fields omitted for ad-hoc meetings.
  - `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.created",
  "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": true,
        "summary_settings": {
          "custom_instructions": "Focus on action items related to the product launch."
        },
        "action_items": true,
        "action_items_settings": {
          "custom_instructions": "Group action items by team member."
        },
        "deduplication_settings": {
          "scope": "workspace",
          "key": "",
          "workspace_id": "<WORKSPACE_ID>"
        },
        "leave_after_silence_seconds": 300
      },
      "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": "<EVENT_ID>"
      },
      "object": "notetaker",
      "status": "scheduled",
      "state": "scheduled"
    }
  },
  "webhook_delivery_attempt": 1
}
```
