<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Notion API - Accessing Rich Text Content from Database Query in Create Page Action in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/notion-api-accessing-rich-text-content-from-database-query-in/m-p/10921#M4303</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/12286"&gt;@dthatcher&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Have you tried implementing with JSON Parser (Json tools by Workato), with that you can able to access rich_text array easily. like shown in the image below. if not, please let me know the exact requirement, will look into it.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="parse_json_workaot_community.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/2341i5D9FBAA216A92635/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="parse_json_workaot_community.png" alt="parse_json_workaot_community.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;J Rajesh Kumar.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Sep 2025 16:27:57 GMT</pubDate>
    <dc:creator>rajeshjanapati</dc:creator>
    <dc:date>2025-09-18T16:27:57Z</dc:date>
    <item>
      <title>Notion API - Accessing Rich Text Content from Database Query in Create Page Action</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/notion-api-accessing-rich-text-content-from-database-query-in/m-p/10917#M4302</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I&lt;/SPAN&gt;&lt;SPAN&gt;'m building a Workato recipe that queries a Notion database and uses&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;the retrieved content to populate a new Notion page. The Query&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Database action works and returns the correct JSON data, but I&lt;/SPAN&gt;&lt;SPAN&gt;'m unable to access nested rich_text content in&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;the Create Page action.&lt;/SPAN&gt;&lt;/P&gt;&lt;H3&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Current Setup&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Step 1:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Webhook trigger (receives&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;meeting_type&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;from web form)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Step 2:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Query Database (Notion)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;- returns 2 records successfully&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Step 3:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;IF&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;condition to match user selection&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Step 4:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Create&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Page (Notion) - fails when trying to access rich_text content&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;JSON Structure Returned by Query Database&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;LI-CODE lang="markup"&gt;"properties": {
  "AgendaOutline": {
    "id": "oiC%3C",
    "type": "rich_text", 
    "rich_text": [
      {
        "type": "text",
        "text": {
          "content": "1. Wins and Highlights...",
          "link": null
        },
        "plain_text": "1. Wins and Highlights...",
        "href": null
      }
    ]
  }
}&lt;/LI-CODE&gt;&lt;H3&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Error&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Message&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;LI-CODE lang="markup"&gt;400 Bad Request: body.children[2].paragraph.rich_text[0].text.content should be defined, instead was `undefined`&lt;/LI-CODE&gt;&lt;H3&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Form&lt;/SPAN&gt;&lt;SPAN&gt;ulas Attempted&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;P&gt;&lt;SPAN&gt;All of these return&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;undefined&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;#{steps.step_2['results'][0]['properties']['AgendaOutline']['rich_text'][0]['plain_text']}
#{steps.step_2['results'][0]['properties']['AgendaOutline']['rich_text'][0]['text']['content']}
#{steps.step_2.results[0].properties.AgendaOutline.rich_text[0].plain_text}&lt;/PRE&gt;&lt;H3&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Questions&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;What&lt;/SPAN&gt;&lt;SPAN&gt;'s the correct syntax to access nested&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;plain&lt;/SPAN&gt;&lt;SPAN&gt;_text&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;from Notion rich_text arrays&lt;/SPAN&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Are there known issues with Work&lt;/SPAN&gt;&lt;SPAN&gt;ato's Notion connector and rich_text data&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;pills?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Should I use a different approach like&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Custom Actions instead of the standard Create Page action?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Additional&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Context&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;The Query Database step&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;shows the correct JSON in job&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;history&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Static text works fine in the Create Page action&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Data pills for custom properties don't appear in&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;the UI, only in raw JSON&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be greatly appreciated&lt;/SPAN&gt;&lt;SPAN&gt;! Has anyone successfully extracted rich_text content from Notion database&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;queries?&lt;/SPAN&gt;&lt;/P&gt;&lt;H3&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H3&gt;</description>
      <pubDate>Thu, 18 Sep 2025 15:02:25 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/notion-api-accessing-rich-text-content-from-database-query-in/m-p/10917#M4302</guid>
      <dc:creator>dthatcher</dc:creator>
      <dc:date>2025-09-18T15:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: Notion API - Accessing Rich Text Content from Database Query in Create Page Action</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/notion-api-accessing-rich-text-content-from-database-query-in/m-p/10921#M4303</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/12286"&gt;@dthatcher&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Have you tried implementing with JSON Parser (Json tools by Workato), with that you can able to access rich_text array easily. like shown in the image below. if not, please let me know the exact requirement, will look into it.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="parse_json_workaot_community.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/2341i5D9FBAA216A92635/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="parse_json_workaot_community.png" alt="parse_json_workaot_community.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;J Rajesh Kumar.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Sep 2025 16:27:57 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/notion-api-accessing-rich-text-content-from-database-query-in/m-p/10921#M4303</guid>
      <dc:creator>rajeshjanapati</dc:creator>
      <dc:date>2025-09-18T16:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Notion API - Accessing Rich Text Content from Database Query in Create Page Action</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/notion-api-accessing-rich-text-content-from-database-query-in/m-p/11068#M4325</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/12286"&gt;@dthatcher&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried using the json parser that will give you the&amp;nbsp; data pills of the json and you can select the required data pill to print the message.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Oct 2025 06:11:31 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/notion-api-accessing-rich-text-content-from-database-query-in/m-p/11068#M4325</guid>
      <dc:creator>Rajesh_Nadella</dc:creator>
      <dc:date>2025-10-23T06:11:31Z</dc:date>
    </item>
  </channel>
</rss>

