Added

New notetaker meetings API


🏷️ API version: 2026-04

You can now retrieve notetaker meeting data via the API using the new notetaker.meetings query. This returns paginated meetings with completed recordings that the current user can view, including summaries, topics, action items, transcripts, and participants.

query {
  notetaker {
    meetings(limit: 10, filters: { access: ALL }) {
      data {
        title
        start_time
        end_time
        recording_duration
        summary
        topics {
          title
          talking_points {
            content
            start_time
          }
        }
        action_items {
          content
          is_completed
          owner
          due_date
        }
        transcript {
          text
          speaker
          start_time
          end_time
          language
        }
        participants {
          email
        }
      }
      page_info {
        has_next_page
        cursor
      }
    }
  }
}

You can filter meetings by IDs, search text, or access level (OWN, SHARED_WITH_ME, SHARED_WITH_ACCOUNT, or ALL).