---
title: "Create a meeting note"
method: POST
path: "/v1/blocks/meeting_notes"
tags: ["Meeting notes"]
---

# Create a meeting note

`POST /v1/blocks/meeting_notes`

## Headers

- `Notion-Version` '2026-03-11', required

## Request body

- union
  - object
    - `title` string — Title for the meeting note.
    - `language` 'auto' | 'en' | 'zh-CN' | 'zh-TW' | 'es' | 'fr' | 'de' | 'ja' | 'ko' | 'pt' | 'ru' | 'th' | 'vi' | 'id' | 'da' | 'fi' | 'no' | 'nl' | 'it' | 'sv' | 'ar' | 'he' | 'pl' — Language hint for transcription. Defaults to automatic detection.
    - `options` object — Optional processing settings.
      - `kickoff_summary` boolean — Whether to start summary generation after transcription.
    - `source` object, required — Audio or video source for the meeting note.
      - `type` 'file_upload', required — Always "file_upload".
      - `file_upload_id` string, required
    - `parent` object, required — Parent page for the new meeting note.
      - `type` 'page_id', required — Always "page_id".
      - `page_id` string, required
  - object
    - `title` string — Title for the meeting note.
    - `language` 'auto' | 'en' | 'zh-CN' | 'zh-TW' | 'es' | 'fr' | 'de' | 'ja' | 'ko' | 'pt' | 'ru' | 'th' | 'vi' | 'id' | 'da' | 'fi' | 'no' | 'nl' | 'it' | 'sv' | 'ar' | 'he' | 'pl' — Language hint for transcription. Defaults to automatic detection.
    - `options` object — Optional processing settings.
      - `kickoff_summary` boolean — Whether to start summary generation after transcription.
    - `source` object, required — Audio or video source for the meeting note.
      - `type` 'block', required — Always "block".
      - `block_id` string, required

## Response `200`

- union
  - object
    - `object` 'block', required — Always "block".
    - `id` string, uuid, required
  - object
    - `object` 'block', required — Always "block".
    - `id` string, uuid, required
    - `type` 'meeting_notes', required — Always "meeting_notes".
    - `meeting_notes` object, required — Meeting note content fields.
      - `title` RichTextItemResponse[] — Title of the meeting note as rich text.
        - union
          - object
            - `plain_text` string, required — The plain text content of the rich text object, without any styling.
            - `href` string, nullable, required — A URL that the rich text object links to or mentions.
            - `annotations` AnnotationResponse, required
              - …
            - `type` 'text', required — Always `text`
            - `text` object, required — If a rich text object's type value is `text`, then the corresponding text field contains an object including the text content and any inline link.
              - …
          - object
            - `plain_text` string, required — The plain text content of the rich text object, without any styling.
            - `href` string, nullable, required — A URL that the rich text object links to or mentions.
            - `annotations` AnnotationResponse, required
              - …
            - `type` 'mention', required — Always `mention`
            - `mention` union, required — Mention objects represent an inline mention of a database, date, link preview mention, page, template mention, or user. A mention is created in the Notion UI when a user types `@` followed by the name of the reference.
              - …
          - object
            - `plain_text` string, required — The plain text content of the rich text object, without any styling.
            - `href` string, nullable, required — A URL that the rich text object links to or mentions.
            - `annotations` AnnotationResponse, required
              - …
            - `type` 'equation', required — Always `equation`
            - `equation` object, required — Notion supports inline LaTeX equations as rich text objects with a type value of `equation`.
              - …
      - `status` 'transcription_not_started' | 'transcription_paused' | 'transcription_in_progress' | 'transcription_failed' | 'summary_in_progress' | 'notes_ready' — Current processing status of the meeting note transcription.
      - `children` object — Block IDs for each tab (summary, notes, transcript).
        - `summary_block_id` string, uuid
        - `notes_block_id` string, uuid
        - `transcript_block_id` string, uuid
      - `calendar_event` object — Calendar event metadata associated with this meeting note.
        - `start_time` string, required — ISO-8601 start time of the calendar event.
        - `end_time` string, required — ISO-8601 end time of the calendar event.
        - `attendees` IdResponse[] — List of attendee user IDs.
      - `recording` object — Start and end times of the actual recording.
        - `start_time` string — ISO-8601 timestamp when the recording started.
        - `end_time` string — ISO-8601 timestamp when the recording ended.
    - `created_time` string, required — ISO-8601 timestamp when this meeting note was created.
    - `last_edited_time` string, required — ISO-8601 timestamp when this meeting note was last edited.
    - `created_by` PartialUserObjectResponse, required
      - `id` string, uuid, required
      - `object` 'user', required — Always `user`
    - `last_edited_by` PartialUserObjectResponse, required
      - `id` string, uuid, required
      - `object` 'user', required — Always `user`
    - `has_children` boolean, required — Whether this block has child blocks.
    - `in_trash` boolean, required — Whether this meeting note is in the trash.

## Other responses

- `400`
- `401`
- `403`
- `404`
- `406`
- `409`
- `429`
- `500`
- `503`
- `504`
- `529`

---

[API](https://skmtc.net/notion/apis/notion-api.md) · [All operations](https://skmtc.net/notion/apis/notion-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/notion/notion-api/revisions/dee5763763b0/schema)
