<?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: Get Note Body in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493832#M25038</link>
    <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/13982"&gt;@dennisedson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;IT EXISTS!!!!!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Witha little help from my friend &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/18155"&gt;@russellbenzing&lt;/a&gt; 's repo I was able to find the property "hs_note_body"!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Russell you're the most help even when you're out of the office lol!&lt;/P&gt;</description>
    <pubDate>Mon, 13 Sep 2021 14:27:20 GMT</pubDate>
    <dc:creator>Kevin-C</dc:creator>
    <dc:date>2021-09-13T14:27:20Z</dc:date>
    <item>
      <title>Get Note Body</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493147#M25020</link>
      <description>&lt;P&gt;Hey all!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm attempting to get a note's body using hubl. Something like this:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;{% set notes = crm_associations(company.id, "HUBSPOT_DEFINED", 7, "limit=100&amp;amp;orderBy=hs_createdate&amp;amp;hs_engagement_type=NOTE", "body", false) %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue being I'm not sure that the body is accessible this wway, but if it is I'm not able to find the property to request.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any insights?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;have you even done this &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/13982"&gt;@dennisedson&lt;/a&gt; ?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Sep 2021 20:15:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493147#M25020</guid>
      <dc:creator>Kevin-C</dc:creator>
      <dc:date>2021-09-10T20:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Get Note Body</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493149#M25021</link>
      <description>&lt;P&gt;It's accessibly via the API, like so:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
    "engagement": {
        "id": xxxxxxx,
        "portalId": xxxxxxxx,
        "active": true,
        "createdAt": 1631220277687,
        "lastUpdated": 1631220277687,
        "createdBy": xxxxx,
        "modifiedBy": xxxxxx,
        "ownerId": xxxxx,
        "type": "NOTE",
        "timestamp": 1631220277687,
        "source": "CRM_UI",
        "sourceId": "kevin@xxxxxx",
        "allAccessibleTeamIds": [],
        "bodyPreview": "Test Company Note 2",
        "queueMembershipIds": [],
        "bodyPreviewIsTruncated": false,
        "bodyPreviewHtml": "&amp;lt;html&amp;gt;\n &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt;\n &amp;lt;body&amp;gt;\n &amp;lt;p&amp;gt;Test Company Note 2&amp;lt;/p&amp;gt;\n &amp;lt;/body&amp;gt;\n&amp;lt;/html&amp;gt;",
        "gdprDeleted": false
    },
    "associations": {
        "contactIds": [],
        "companyIds": [
            xxxxxx
        ],
        "dealIds": [],
        "ownerIds": [],
        "workflowIds": [],
        "ticketIds": [],
        "contentIds": [],
        "quoteIds": []
    },
    "attachments": [],
    "metadata": {
        "body": "&amp;lt;p&amp;gt;Test Company Note 2&amp;lt;/p&amp;gt;"
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I really would like to avoid yet another API call…&lt;/P&gt;</description>
      <pubDate>Fri, 10 Sep 2021 20:17:37 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493149#M25021</guid>
      <dc:creator>Kevin-C</dc:creator>
      <dc:date>2021-09-10T20:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Get Note Body</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493174#M25024</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/73772"&gt;@Kevin-C&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;As far as I can tell, you can't with hubl, yet.&amp;nbsp; I am asking around.&amp;nbsp; In my test, I wasn't able to pull any properties from an engagement.&amp;nbsp; Were you?&lt;/P&gt;
&lt;P&gt;Enagements is on track to be an actual object(s) soon so I wonder if that will remedy this.&amp;nbsp; Not very helpful now, but....&lt;/P&gt;</description>
      <pubDate>Fri, 10 Sep 2021 21:23:45 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493174#M25024</guid>
      <dc:creator>dennisedson</dc:creator>
      <dc:date>2021-09-10T21:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get Note Body</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493832#M25038</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/13982"&gt;@dennisedson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;IT EXISTS!!!!!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Witha little help from my friend &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/18155"&gt;@russellbenzing&lt;/a&gt; 's repo I was able to find the property "hs_note_body"!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Russell you're the most help even when you're out of the office lol!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Sep 2021 14:27:20 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493832#M25038</guid>
      <dc:creator>Kevin-C</dc:creator>
      <dc:date>2021-09-13T14:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Get Note Body</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493833#M25039</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/18155"&gt;@russellbenzing&lt;/a&gt; needs to get on the forums more often &lt;span class="lia-unicode-emoji" title=":winking_face_with_tongue:"&gt;😜&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Sep 2021 14:28:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Get-Note-Body/m-p/493833#M25039</guid>
      <dc:creator>dennisedson</dc:creator>
      <dc:date>2021-09-13T14:28:51Z</dc:date>
    </item>
  </channel>
</rss>

