Zum Inhalt springen
DeutschlandGPT

Notion

Read and write Notion pages and databases from workflows

Connect your Notion workspace to read and write pages and databases directly from your workflows.

Authentication: OAuth 2.0. Connect your Notion workspace via the Integrations page. The connected integration must be granted access to the pages and databases you want to use.

Triggers

New Database Item

Fires when a new item is added to a monitored Notion database.

OutputTypeDescription
pageIdstringPage ID of the new item
titlestringItem title
propertiesobjectAll database properties as key-value pairs
createdAtstringCreation timestamp
urlstringDirect link to the item

Updated Database Item

Fires when an existing database item is modified.

Same outputs as New Database Item, plus:

OutputTypeDescription
lastEditedAtstringLast edit timestamp

Updated Page

Fires when any Notion page (not just database items) is modified.

OutputTypeDescription
pageIdstringPage ID
titlestringPage title
lastEditedAtstringLast edit timestamp
urlstringPage URL

Actions

Get Page Content

Retrieves the full content of a Notion page.

InputRequiredDescription
Page IDYesNotion page ID
OutputTypeDescription
contentstringPage content as plain text
blocksarrayRaw block objects

Get Page Details

Returns metadata about a page (properties, parent, timestamps).

InputRequiredDescription
Page IDYesNotion page ID
OutputTypeDescription
pageobjectPage metadata with title, properties, createdAt, url

Find Pages

Searches for pages and database items by title.

InputRequiredDescription
QueryYesTitle text to search for
OutputTypeDescription
resultsarrayMatching pages/items

Create Page

Creates a new Notion page or database item.

InputRequiredDescription
ParentYesParent page ID or database ID
TitleYesPage or item title
PropertiesNoDatabase property values (when adding to a database)
ContentNoInitial page content (as plain text or markdown)
OutputTypeDescription
pageIdstringID of the created page
urlstringURL to the new page

Update Page

Updates a page's properties or title.

InputRequiredDescription
Page IDYesPage to update
TitleNoNew title
PropertiesNoUpdated property values

Query Database

Queries a Notion database with filters and sorts.

InputRequiredDescription
Database IDYesDatabase to query
FilterNoFilter object (Notion filter syntax)
SortsNoSort objects
Page SizeNoNumber of results per page
OutputTypeDescription
resultsarrayDatabase items matching the filter
hasMorebooleanWhether more results are available

Get Database Details

Returns schema and metadata for a Notion database.

InputRequiredDescription
Database IDYesNotion database ID
OutputTypeDescription
databaseobjectDatabase metadata with title, properties schema

Find Databases

Searches for Notion databases by title.

InputRequiredDescription
QueryYesDatabase name to search for
OutputTypeDescription
databasesarrayMatching database objects

Searches across all pages and databases accessible to the integration.

InputRequiredDescription
QueryYesSearch query
OutputTypeDescription
resultsarrayMatching pages and database items
Was this page helpful?