300 questions
-1
votes
1
answer
97
views
Access Notion AI meeting transcripts/summaries via Notion API python SDK
When trying to access AI transcript and summaries using the python SDK the object returned is a block object of type 'unsupported'.
I know this is still in beta, is it possible to access it through ...
2
votes
1
answer
494
views
How to connect to Notion's remote MCP server from your own MCP client?
I'm experimenting with Pydantic AI as agentic framework and want to use Notion's remote MCP server as tool for my agent.
Remote server's endpoint seems to require OAuth token to be accessed, but I ...
0
votes
0
answers
59
views
Why is Notion video and image display inconsistent between Notion and my Next using react-notion-x?
I’m using Next App Router with notion.getPage and react-notion-x’s NotionRenderer to render Notion pages on my site. This setup allows internal users to edit Notion workspace pages and have changes ...
3
votes
0
answers
55
views
Notion API: How to check if a page is shared with the entire workspace?
I need to determine via the Notion API whether a page is shared with the entire workspace (“Everyone at ”), not just whether my integration can access it.
Does the public API expose any field or ...
0
votes
0
answers
75
views
Why are accented characters (é, è, à) missing in Notion pages created via the Notion API in NodeJS
I'm using the Notion API with Node.js to convert a local resume.md file into a Notion page. The file contains French text with accents like é, è, and à.
This is my code,
I tried:
Reading and writing ...
0
votes
0
answers
35
views
Publish Android App Dependencies to Notion
I am trying to create a gradle task for an Android App to publish all project dependencies on a Notion Page using Notion API.
The issue I have is when I am trying to launch this task I get a HTTP 400 ...
0
votes
1
answer
196
views
Notion events with web hooks example
I am making a personal project using Notion API and I noticed that they've implemented web hooks that send events to your API on different actions. I was thinking on using this feature to receive ...
0
votes
0
answers
81
views
Notion OAuth ignores query parameters in registered redirect URI
I’m integrating Notion's OAuth flow and encountered unexpected behavior regarding redirect_uri.
According to RFC 6749 Section 3.1.2, registered redirect URIs may include query string parameters, as ...
0
votes
1
answer
183
views
Notion API 404 Error: Cannot Find Database when querying from Google Apps Script
I'm trying to query a Notion database using Google Apps Script, but I keep getting a 404 Not Found error.
My Setup
Using Google Apps Script (GAS) to query a Notion Database.
Notion API Version: 2022-...
1
vote
0
answers
84
views
How to Get Redirected URL in Python for OAuth Flow Requiring User Interaction (Notion API)
I am integrating Notion’s OAuth 2.0 authentication in Python using the Notion SDK and need to retrieve the redirected URL after user login and consent.
Expected Behavior:
I want to automate the ...
0
votes
1
answer
118
views
Cannot add image with external URL containing ‘?’ query string
The Notion API is unable to work with image URLs that contain query strings, i.e., adding a Google Maps static image via URL (key obscured for obvious reasons):
{"children”:
[
{
"...
1
vote
0
answers
191
views
'object_not_found, Could not find database with ID' Error When Accessing Linked Databases
I am working with the Notion API to retrieve children blocks of a page using the following code:
await notionClient.blocks.children.list({ block_id: id });
After fetching the page blocks, I filter ...
1
vote
0
answers
131
views
Is there a way to get information on a Notion teamspace through the api?
I am creating a Notion integration and I need information about the teamspaces (id, name, etc.), and also which teamspace each page/database belongs to. Is there a way to get this data from the api?
I ...
3
votes
1
answer
167
views
Add a page directly under the workspace using Notion API
I'm currently trying to implement adding pages using Notion's API.
I have confirmed that a new page can be added by specifying the ID of the page or database (table), but is it not possible to add a ...
2
votes
1
answer
510
views
Creating a subpage (sub-item) through Notion API
I need to create a subpage (sub-item) of a preexisting page inside a database in Notion using Notion API. I use Python to make API calls.
I tried to do a create page API call as described in the API ...