How to Append a Block in Notion Without Formatting Text into a List?

This topic was automatically generated from Slack. You can find the original thread here.

Hi everyone!

I need help on a workflow. I am trying to append a block in Notion, however upon testing the action the result its giving me are the text that I need however in a list format instead of a regular lined sentences. Here’s a screenshot of the pipedream step. And here’s a screenshot of what’s happening in Notion. I hope someone can help me fix it. :sweat: help

Hi , on the Markup Contents prop, could you try to remove the quotes?

{{ steps.list_replies.$return_value.messages[3].blocks[0].elements[0].elements[0].text }}

Thanks for this , I tried it but its still giving me the same result.

Have you checked your Notion page?

Also could you share the result of the step list_replies?

Its the same result in Notion. Here’s the result for the list_replies . I wanted to get the user thread replies in Slack and add it on the Page section of the notion document.

could you try to hover over the text field, click Copy Path, then past it into the Markdown Contents again?

tried it, its still the same result both in Pipedream and the Notion page.

Thanks, let me try to reproduce your issue

I see that the prop Markup Contents expects an array, so you will need to wrap it into an array:

{{ [steps.list_replies.$return_value.messages[3].text] }}

It works!

Thanks