Notion Product Updates April 2026: Full Changelog and What You Can Actually Automate

M
Matthew Diakonov
8 min read

Notion shipped six user-facing updates in the first ten days of April 2026, plus the tail end of the Notion 3.4 rollout from late March. Every other roundup lists these features. This guide does something different: it classifies each update by whether you can automate it through the Notion API, or whether it only lives in the desktop UI. For the UI-only features (most of them), it shows how accessibility API automation can reach what the API cannot.

4.9from 500+ Mac users
Free & open source
Works offline
No API keys

1. Complete April 2026 changelog

Here is every Notion update from April 1 through April 10, 2026, plus the late-March releases that rolled out to most users in early April. Dates are from Notion's official release notes.

Apr 10

Customize database tab display

Database tabs can now show "Text and icon," "Text only," or "Icon only." This is a per-user setting that does not affect teammates' views.

Apr 9

New page cover art collections

Four museum-sourced collections: natural textures from Texturelabs, Hudson River School paintings from the Met, Chinese silk paintings from the National Museum of Asian Art, and watercolor fruits from the USDA Pomological Watercolors archive.

Apr 8

Mute discussion replies

You can now silence notifications for specific discussion threads. Notifications automatically resume if someone @-mentions you or you post a new comment. Unmute anytime from the thread menu.

Apr 7

Share Notion AI chats as a link

AI conversations can now be shared as read-only links. Manage shared links via Settings → Public pages → Shared AI chats. Also on April 7: the Create Comment API endpoint now accepts markdown string bodies alongside rich_text, with SDK support in @notionhq/client v5.17.0.

Apr 6

Voice input on desktop

Dictate prompts to Notion AI using your voice on macOS and Windows. Custom Agents are available to try free through May 3, 2026.

Apr 1

Desktop app v7.9.1

Bug fixes for tab functionality and meeting notes issues. Followed by v7.10.0 on April 6 with AI Meeting Notes in Command Search and Electron 40.8.5 upgrade.

Late March (rolling out in April)

Mar 30

Tabs block (/tabs command)

Organize page content into tabbed sections. Reduces vertical scrolling on long pages. This is a new block type, not to be confused with database view tabs.

Mar 26

Notion 3.4, Part 1

Dashboards for databases (Business and Enterprise), redesigned sidebar with four customizable tabs, presentation mode, H4 headers, and AI image generation.

2. The automation surface map: API vs. UI-only

This is the part no other roundup covers. Each April feature falls into one of three categories: available through the Notion API, only accessible through the desktop UI, or not automatable at all. Knowing which category a feature falls into determines what tools you need.

FeatureDateAPI supportAutomation path
Voice inputApr 6NoneAccessibility API (microphone button, dictation field)
Share AI chatsApr 7NoneAccessibility API (share button in AI chat panel)
Markdown comment bodiesApr 7Yes (Create Comment endpoint)API (SDK v5.17.0+)
Mute discussionsApr 8NoneAccessibility API (thread menu → Mute)
Page cover artApr 9Partial (cover URL, not gallery)API for setting cover URL; gallery browsing via UI only
Database tab displayApr 10NoneAccessibility API (tab display settings menu)
Tabs block (/tabs)Mar 30NoneAccessibility API (tab elements in page content)
Presentation modeMar 26NoneKeyboard shortcut or accessibility API

The pattern: Of the 8 features listed above, only 1 has full API support (markdown comment bodies), 1 has partial support (cover art URLs), and 6 are entirely UI-only. If you want to build automations around Notion's newest capabilities, the API alone is not enough.

3. How to automate the UI-only features

Notion is an Electron app on macOS. Like all Electron apps, it exposes its UI through the macOS accessibility framework. Every button, text field, menu item, tab, and dialog has an accessibility node with a role, a label, and a position.

Fazm uses a binary called mcp-server-macos-use to read this tree and interact with elements by name. Here is what it sees when looking at Notion's new features:

Voice input (Apr 6)

The voice input button appears in Notion AI's prompt bar as an accessibility element. Fazm can click it to start dictation, wait for the transcription to complete, and then submit the prompt. This enables workflows like: "every morning, open Notion, start a voice prompt summarizing my calendar, and paste the result into today's journal page."

[Group] "AI prompt"
  [Button] "Voice input" x:612 y:480 w:32 h:32
  [TextField] "Ask AI anything..." x:280 y:476 w:320 h:40
  [Button] "Submit" x:648 y:480 w:32 h:32

Tabs block (Mar 30)

The new /tabs block renders as accessible tab elements. Fazm can switch between tabs, read tab contents, and even create new tab blocks by typing the /tabs slash command into a content area. The Notion API does not expose tabs blocks at all.

[TabList] "Page tabs"
  [Tab] "Overview" selected x:280 y:320 w:100 h:36
  [Tab] "Details" x:384 y:320 w:80 h:36
  [Tab] "History" x:468 y:320 w:80 h:36
[TabPanel] "Overview content"
  [StaticText] "Project summary..." x:280 y:372

Shareable AI chats (Apr 7)

The share button in AI chat panels is an accessible button element. Fazm can open an AI chat, click share, copy the generated link, and send it to a teammate via Slack, Mail, or any other app. This turns a manual 4-step process into a single automated workflow.

Presentation mode (Mar 26)

Presentation mode can be triggered via the keyboard shortcut Cmd+Opt+P, but the navigation controls (next slide, previous slide, exit) are also accessible elements. Fazm can start a presentation, advance through slides programmatically, and take screenshots of each slide for distribution, all without manual interaction.

4. Practical workflows using April updates

The value of desktop-level automation is combining Notion with the rest of your Mac. Here are concrete workflows that use April 2026 features as starting points:

Daily standup from voice notes

Open Notion, use voice input to dictate your standup update, then copy the text and post it to your team's Slack channel. Fazm handles the Notion voice input, reads the transcribed text, opens Slack, navigates to the right channel, and sends the message.

Export presentations as PDFs

Enter presentation mode on a Notion page, advance through each slide while capturing screenshots, then combine them into a PDF using Preview. This gives you a distributable version of a Notion presentation without leaving your Mac. Notion has no export-to-PDF option for presentation mode.

Batch-organize pages with tabs

For a set of long Notion pages, Fazm can open each one, insert a /tabs block, and move content sections into separate tabs. This is tedious to do manually across dozens of pages but straightforward to automate since every element is reachable through the accessibility tree.

Share AI research across tools

Run a research prompt in Notion AI, share the chat as a read-only link, then paste that link into a GitHub issue, a Linear ticket, or an email. Fazm handles the entire chain: Notion AI prompt, share button, link copy, and target app navigation.

All of these workflows combine features that have no API with cross-app actions that no single tool can handle alone. That is the specific gap that Fazm fills: it connects UI-only features to the rest of your desktop through structured accessibility automation rather than fragile screenshot matching.

Frequently asked questions

What did Notion ship in April 2026?

Between April 1 and April 10, 2026, Notion released voice input on desktop, shareable AI chat links, muted discussion replies, new museum-sourced page cover art, customizable database tab display options, and a developer API update adding markdown comment bodies. The major Notion 3.4 features (dashboards, presentation mode, redesigned sidebar) shipped in late March and are also covered here since they rolled out to most users in early April.

Which April 2026 Notion features can be automated through the API?

Very few. The April developer update added markdown comment bodies to the Create Comment endpoint (SDK v5.17.0) and relative date filters. But the headline user-facing features, such as voice input, shareable AI chats, database tab customization, and discussion muting, have no API endpoints. They are only accessible through the Notion desktop or web UI.

How can I automate Notion features that have no API?

Fazm uses macOS accessibility APIs to interact with Notion's desktop app the same way a screen reader does. It reads the UI element tree (buttons, menus, text fields) by role and label, then clicks, types, or navigates without needing an API endpoint. This means features like voice input, presentation mode, and tab customization are all reachable through automation even though Notion has no API for them.

Is accessibility API automation more reliable than screenshot-based tools?

Yes. Screenshot-based tools send a full image to a vision model, which guesses where to click based on pixels. Accessibility API automation reads the actual element tree from macOS, getting exact labels, types, and positions as structured data. When Notion updates its UI, the visual layout may change, but accessibility labels like 'New page' or 'Mute' typically stay the same, so automations keep working.

Does Fazm work with Notion's new tabs feature?

Yes. Notion's /tabs block (shipped March 30, 2026) creates tab containers in pages. These appear as accessible tab elements in the macOS accessibility tree. Fazm can switch between tabs, read tab contents, and create new tabs by interacting with these elements directly. The Notion API does not currently expose tabs blocks.

Can Fazm automate workflows that span Notion and other Mac apps?

That is the main use case. Because Fazm operates at the OS level, it can read data from a Notion database, open a related file in Finder, run a terminal command, paste output back into Notion, and send a summary via Mail or Slack. None of this is possible with Notion's internal automations or API alone, since those only operate within Notion.

Automate Notion's newest features across your entire Mac

Fazm is free and open source. Download it, point it at Notion, and build workflows that span every app on your desktop.

Try Fazm free