What is your goal?
Hi, this topics has been discussed already, but I am facing the same issue.
My Notion AI meeting notes are all written into one database, and should from there be automatically written into my crm. Make doesn’t find the content of the AI Meeting Summary, that is laying in the AI meeting block in the Database Page.
What is the problem & what have you tried?
Any help or workaround is appreciated!
Hi @TillSander
What workarounds have you tried so far? seems like Notion’s AI meeting summary block acts as an AI overlay on top of your content rather than permanent, or static text. These AI blocks probably lack a permanent text property which can make it difficult to get directly.
You can try a few solid workarounds. This one will depend on your comfort with JSONs, HTTP modules, and how automated you want it to be.
You can use the direct API approach. Notion’s API now supports the “meeting_notes” block type. You can fetch it recursively: Use HTTP “Make a request” module to call GET https://api.notion.com/v1/blocks/{page_id}/children
Use a Filter or Iterator to find the block where type = meeting_notes then extract the summary_block_id (and/or notes_block_id, transcript_block_id) from the children object
Now make another HTTP call to GET https://api.notion.com/v1/blocks/{summary_block_id}/children in order to get the actual rich text content.
This should work well once the AI status is “notes_ready”. You’ll need good JSON parsing, and error handlers for pagination, and possibly a delay until processing finishes. It’s powerful but a bit technical.
What other options have you tried so far? More context will also be very helpful.
Hi, thanks for your answer.
It tried the exact way you described, anyhow it didn’t work. In the end after calling https://api.notion.com/v1/blocks/{summary_block_id}/children in order to get the actual rich text content, the bundle I receive from it is just one out of the 10 paragraphs my meeting summary has in the notion page…