Questions tagged [notion]

97 questions
1
vote
1 answer

How to turn comma separated list into Venn Diagram Format in Power Query

My goal is to create a ven diagram out of database data. I am happy to achieve this in 2 ways Using Flurish.com which requires me to solve this power query problem. Being suggested other software that can automatically create Ven Diagrams The…
Logan
  • 15
  • 5
1
vote
1 answer

How do I expose integration actions via Notion API?

I'm building a Chrome extension that will leverage the Notion API through an integration. Part of this extension requires users enter OAuth flows for different platforms. I would like to create a menu within Notion for my users, accessible through…
1
vote
2 answers

Why there are spaces between my elements in contenteditable?

I'm trying to build a Notion-like editor in Svelte, I've made some good progress, but I'm now scratching my head trying to figure out why exactly i get spaces between span elements. I'm dividing the text in spans based on their formatting, here's an…
1
vote
0 answers

How do I make a contain method in Notion look for two conditions?

I have a Date field in Notion. It's setup is like this: December 7, 2022. I have made a formula that looks for the month and then adds up expenses from that month. this is the formula: contains(format(prop("Date")), "December") ? prop("Expenses") :…
1
vote
0 answers

Notion database does not send name of linked page

I am using Notion API to fetch data from Notio. I am using Notion-Version": "2022-06-28" The code below is my request readUrl = f"https://api.notion.com/v1/databases/{self.db_id}/query" res = requests.request("POST", readUrl,…
Elvin Jafarov
  • 1,341
  • 11
  • 25
1
vote
1 answer

How do I share a notion page to web using the Notion API?

While we are able to do it from notion dashboard like this: https://www.notion.so/help/public-pages-and-web-publishing#make-a-page-public But I want to make a page public using the API. I was not able to find anything in the API docs. Is it…
1
vote
2 answers

Creating multi-select tags via Notion API

I'm writing a programme to create a page under a Notion database using the API, but am having trouble getting the multi-select property to work This is what I have written in properties { } (lines 67-76 of the code in my index.js in my repo) …
Leosn
  • 13
  • 3
1
vote
0 answers

Easy way to integrate local or SMB files

this is not exactly related to the API as it doesn't allow such complex integrations, at least for now. Even so, if someone has found a solution to integrate this in some way I would love to know and share it. I have been missing a feature for a…
Fiser
  • 25
  • 8
1
vote
1 answer

Updating multiple entries in a notion database with API

I have a notion database which I call with the API like so: url = f"https://api.notion.com/v1/databases/{NotionDB}/query" payload = {"page_size": 200} headers = { "Authorization": NotionKEY, "accept": "application/json", …
Massagran
  • 1,781
  • 1
  • 20
  • 29
0
votes
0 answers

Get Notion notification by API or scraping

I want to get all updates in Notion, but I can't get it from API. Can I scrape this notification inbox all the contents?
dmnlk
  • 2,995
  • 2
  • 25
  • 30
0
votes
0 answers

Python Notion-client Database Updates

I have a notion database that contains a list of file directories. I am writing a script that is going to update the names of all the files in that database so it will also need to update the filepaths in the database to reflect the new…
Cool Spot
  • 31
  • 3
0
votes
1 answer

How would i retrieve relation data through Make?

I'm new to automation and all i'm trying to do is create a google calendar event with specific details when I create a new "Job" in a notion Database I tried using Zapier but that didn't seem to work but Make seemed more promising, There is only 2…
Grim5667
  • 3
  • 3
0
votes
0 answers

Need help in creating Notion Formula

I'm relatively new to Notion and I'm currently working on setting up a database to track my tasks. I attempted to use formulas within Notion, but I find them a bit confusing. To simplify things, I decided to draft a Python script that captures the…
Shaheem PP
  • 625
  • 1
  • 5
  • 13
0
votes
1 answer

Notion API - Updating multiple page properties at once

Is it possible to update multiple properties with a single request? Documentation just shows a single property being changed per request Currently trying: curl https://api.notion.com/v1/pages/PageID \ -H 'Authorization: Bearer '"SHHH! Secret"'' \ …
0
votes
0 answers

How to access a database inside another database in Notion using python

I'm writing a python script that has to get data about some individuals(phone numbers) from Notion database. I did that part. The problem is that every person has its own database about the weekly progress and I have to retrieve some data from this…
sahara
  • 13
  • 3