Notion database item with conversation message

Hi

I’m using an integration from 1click tools that allows you to post a Notion database item when something occurs in a Hubspot workflow. I am using to post an item to our feedback database whenever we receive a new conversation from our Hubspot chatbot in our inbox.

The integration is working but I can’t find any conversation property to use for the actual message content, only data related to the message such as a timestamp. I got that information from this KB page: HubSpot's conversations properties

I’m looking to have the first message and message thread entered into the title/content of the Notion database entry.

I spoke to Hubspot support who said to try {{ conversation.hs_originalHtml }}

But this didn’t work, as it’s not actually a conversation property.

I’d appreciate any solutions anyone can come up with to get the message content from a conversation copied across to the Notion database.

Integration: HubSpot Notion Integration | AI Studio | Resonate

My workflow with attempted tag from Hubspot support suggestion:

The message I sent on our chatbot to test the integration:

That attempted tag failing - this is the Notion database item that was created, without message content:

Hi, @IParker2 :waving_hand: I don’t have the answer, but I do have a suggestion. You can search the Properties API to get a full list of the Properties for an Object. For example:

curl --request GET \
 --url 'https://api.hubapi.com/crm/v3/properties/conversations?archived=false' \
 --header 'authorization: Bearer YOUR_ACCESS_TOKEN'

You get this list directly from the example page on the Endpoints tab here. I usually take the output, dump it into a .JSON file and open it in VS Code so it’s easier to search.

Best,

Jaycee