<?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: How to access activity data (meetings and emails sent) through the API for us in n8n? in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1223454#M85463</link>
    <description>&lt;P&gt;I really appreciate you sharing this use case about pulling activity data for your sales reports. This is a common challenge when building automated reporting workflows in n8n.&lt;/P&gt;
&lt;P&gt;For accessing meetings and email activity through the API you'll want to use the Engagements API. You can query meeting engagements and email engagements separately and then aggregate the counts. In n8n you can set up HTTP Request nodes to call the engagements endpoint with filters for date ranges and engagement types. The tricky part is handling pagination if you have lots of activities but n8n makes it pretty straightforward with loops.&lt;/P&gt;
&lt;P&gt;For your weekly report workflow I'd suggest pulling data for each rep individually and then using n8n's merge or aggregate nodes to combine everything into your final email format.&lt;/P&gt;</description>
    <pubDate>Thu, 13 Nov 2025 12:23:21 GMT</pubDate>
    <dc:creator>amjadkhatri</dc:creator>
    <dc:date>2025-11-13T12:23:21Z</dc:date>
    <item>
      <title>How to access activity data (meetings and emails sent) through the API for us in n8n?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1222406#M85375</link>
      <description>&lt;P&gt;I am creating a weekly internal sales report, and need to pull data from a few sources and compile them into one easy to read email. One of the metrics I need to be reporting on is emails sent and meetings booked/conducted. This is all readily available in HubSpot. I am able to create the report and then share the report, however this would mean that it is sent in a seperate email, which is not what I want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;According to the documentation I need access to&amp;nbsp;&lt;A href="http://crm.objects.meetings.read/" target="_blank" rel="nofollow noopener noreferrer"&gt;crm.objects.meetings.read&lt;/A&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://crm.objects.emails.read/" target="_blank" rel="nofollow noopener noreferrer"&gt;crm.objects.emails.read&lt;/A&gt;&lt;SPAN&gt;, however these are both unavailable to chose in the list.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Does anyone have a solution as to how I can get access to this data and use it in my n8n workflow?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 09:20:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1222406#M85375</guid>
      <dc:creator>GijsTempelman</dc:creator>
      <dc:date>2025-11-11T09:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to access activity data (meetings and emails sent) through the API for us in n8n?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1222434#M85381</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1009352"&gt;@GijsTempelman&lt;/a&gt;, the CRM v3 Emails and Meetings objects, HubSpot doesn’t use separate crm.objects.emails.* or crm.objects.meetings.* scopes. Access is granted via the contacts object scope. Please add the&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;crm.objects.contacts.read&lt;/STRONG&gt; scope then see if that works.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 11:02:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1222434#M85381</guid>
      <dc:creator>Christensen</dc:creator>
      <dc:date>2025-11-11T11:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to access activity data (meetings and emails sent) through the API for us in n8n?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1222498#M85394</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1007207"&gt;@Christensen&lt;/a&gt;,&amp;nbsp;thanks for the speedy reply. I can definitely access the contacts object, but then I am at a loss for how to get a count of all meetings conducted and emails sent within a date range.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 13:13:53 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1222498#M85394</guid>
      <dc:creator>GijsTempelman</dc:creator>
      <dc:date>2025-11-11T13:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to access activity data (meetings and emails sent) through the API for us in n8n?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1223454#M85463</link>
      <description>&lt;P&gt;I really appreciate you sharing this use case about pulling activity data for your sales reports. This is a common challenge when building automated reporting workflows in n8n.&lt;/P&gt;
&lt;P&gt;For accessing meetings and email activity through the API you'll want to use the Engagements API. You can query meeting engagements and email engagements separately and then aggregate the counts. In n8n you can set up HTTP Request nodes to call the engagements endpoint with filters for date ranges and engagement types. The tricky part is handling pagination if you have lots of activities but n8n makes it pretty straightforward with loops.&lt;/P&gt;
&lt;P&gt;For your weekly report workflow I'd suggest pulling data for each rep individually and then using n8n's merge or aggregate nodes to combine everything into your final email format.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 12:23:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1223454#M85463</guid>
      <dc:creator>amjadkhatri</dc:creator>
      <dc:date>2025-11-13T12:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to access activity data (meetings and emails sent) through the API for us in n8n?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1223502#M85472</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1009352"&gt;@GijsTempelman&lt;/a&gt;&amp;nbsp;, You can capture the meetings within a date range using the /crm/v3/objects/emails/search and /crm/v3/objects/meetings/search&amp;nbsp;endpoints by adding a filterGroups then use the total count for it.&lt;BR /&gt;&lt;BR /&gt;Sample filterGroups:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
  "filterGroups": [{
    "filters": [{
      "propertyName": "hs_meeting_start_time",  // or "hs_timestamp" for emails
      "operator": "BETWEEN",
      "value": "1579514400000",      // Start (milliseconds)
      "highValue": "1642672800000"   // End (milliseconds)
    }]
  }]
}&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 13 Nov 2025 14:19:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1223502#M85472</guid>
      <dc:creator>Christensen</dc:creator>
      <dc:date>2025-11-13T14:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to access activity data (meetings and emails sent) through the API for us in n8n?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1224461#M85518</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1007207"&gt;@Christensen&lt;/a&gt;,&amp;nbsp; I'm trying to fetch email data from HubSpot using the /crm/v3/objects/emails/search endpoint in an HTTP Request node, but I'm getting a 403 error saying I'm missing required scopes.&lt;/P&gt;&lt;P&gt;The error states: "This app hasn't been granted all required scopes to make this call. Required scope: sales-email-read", which isn't one of the scopes I can allow access to.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The meetings scope and count work perfectly. Just cant get the emails up and running.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 07:26:31 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1224461#M85518</guid>
      <dc:creator>GijsTempelman</dc:creator>
      <dc:date>2025-11-17T07:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to access activity data (meetings and emails sent) through the API for us in n8n?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1224489#M85522</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1009352"&gt;@GijsTempelman&lt;/a&gt;,&amp;nbsp;well for emails you need to add the additional scope sales-email-read which is under the "Other" in the scope selection. Unfortunately, I'm not aware of any workaround for this.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 09:11:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/How-to-access-activity-data-meetings-and-emails-sent-through-the/m-p/1224489#M85522</guid>
      <dc:creator>Christensen</dc:creator>
      <dc:date>2025-11-17T09:11:42Z</dc:date>
    </item>
  </channel>
</rss>

