94 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
93
views
Truncation on Notion rollups
I made a project to update some Notion tables automatically.
By runing this code:
# Get page(s) from given instance
def PegarPaginas(index_instancia: int, n_paginas: int = 1):
url = f"https://...
1
vote
0
answers
57
views
How to convert a Rust struct into a HashMap for the Notion API using field attributes?
I'm working on a Rust integration with the Notion API, which expects page properties in the form of a HashMap<String, PropertyValue>.
To avoid writing repetitive boilerplate for each struct, I’d ...
0
votes
1
answer
80
views
How can I make Notion Webhooks with Python FastAPI?
I am making Webhook in Notion and I'm using Python FastAPI Library.
Here is my code, router.py:
router = APIRouter()
@router.post("/webhook")
async def handle_webhook(request: Request):
...
0
votes
1
answer
172
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
18
views
Use Make to monitor the updates of the Notion database
I'm aiming to create an automated workflow in which, whenever a page within a Notion database undergoes an update, its content will be promptly sent via email to a designated address using Make. At ...
0
votes
1
answer
166
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-...
0
votes
0
answers
27
views
how to query all databases using `notion-sdk-js`?
Is it possible to query all databases using notion-sdk-js?
Before asking this question, I read the usage of notion-sdk-js:
it reflects:
Operations related to databases must pass the database_id.
...
0
votes
0
answers
26
views
Is it possible to open the Notion App based on this page ID in other apps?
For example, if I know a Notion page ID, can I open the Notion App based on this page ID in other apps?
In other words, is there a method that can be called to open the Notion App and display the page ...
1
vote
0
answers
157
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 ...
0
votes
0
answers
24
views
How can related queries of the database be implemented in Notion?
The database in Notion is similar to the table in MySQL.
Can it be used as a table of a relational database, for example, to conduct queries such as left join and inner join?
I haven't found relevant ...
0
votes
0
answers
47
views
How do I create Hero cards in Codecks when working with the API (python)
I am making a python script that will take data from a Notion database and create cards in a Codecks deck by using both their API's. I am however not able to make hero cards, only normal cards. When ...
0
votes
0
answers
110
views
Creating a formula property in Notion to exchange updates between properties
I need a formula property for a Notion's database that follows the rules below.
My database has the following properties: Project, Priority, and Finished.
When I mark the Priority tag as Done in a ...
0
votes
0
answers
219
views
Notion converts timestamps in current timezone. How to display them in local timezone and mention the timezone along with the timestamp
I am creating an itinerary page for my upcoming travel which will commence in another timezone. Now when I put the time stamps in the text, I can put them as local time in that timezone by selecting ...
2
votes
0
answers
155
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
466
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 ...