<?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: Grab all meetings with associated contact in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Grab-all-meetings-with-associated-contact/m-p/804888#M64729</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;! Yes, I've looked into that and I believe that can only search specific contacts and not all contacts associated with a meeting. I tried to change that filter's operator to HAS_PROPERTY but unfortunately, it doesn't work. Would you happen to know if there's another workaround? I believe since HubSpot has API rate limits up to 10k, at some point, using the current method I have wouldn't be sustainable.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jun 2023 20:45:25 GMT</pubDate>
    <dc:creator>Yel-o</dc:creator>
    <dc:date>2023-06-08T20:45:25Z</dc:date>
    <item>
      <title>Grab all meetings with associated contact</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Grab-all-meetings-with-associated-contact/m-p/804461#M64705</link>
      <description>&lt;P&gt;I want to grab all meetings with their associated contact and currently using a GET request: &lt;A href="https://api.hubapi.com/crm/v3/objects/meetings?associations=contacts" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;https://api.hubapi.com/crm/v3/objects/meetings?associations=contacts&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;but I feel that it doesn't pull everything since I see some meetings not listed from this result. But, if I grab the meeting directly, I can see the associated contact. Is there another way to grab all associated meetings of a contact?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 02:18:37 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Grab-all-meetings-with-associated-contact/m-p/804461#M64705</guid>
      <dc:creator>Yel-o</dc:creator>
      <dc:date>2023-06-08T02:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Grab all meetings with associated contact</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Grab-all-meetings-with-associated-contact/m-p/804787#M64723</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/292934"&gt;@Yel-o&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Have you looked at utilizing the Search API? If you are searching using a specific Contact ID, for example, you can make a request like this:&lt;/P&gt;
&lt;P&gt;Request&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;POST https://api.hubapi.com/crm/v3/objects/meetings/search&lt;/LI-CODE&gt;
&lt;P&gt;Body (using &lt;A href="https://developers.hubspot.com/docs/api/crm/search#search-through-associations" target="_blank" rel="noopener"&gt;pseudo associations&lt;/A&gt;)&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
    "filters": [
      {
        "propertyName": "associations.contact",
        "operator": "EQ",
        "value": "901"
      }
    ]
  }&lt;/LI-CODE&gt;
&lt;P&gt;Response&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{
    "total": 3,
    "results": [
        {
            "id": "32628798647",
            "properties": {
                "hs_createdate": "2023-03-17T20:33:55.426Z",
                "hs_lastmodifieddate": "2023-03-17T20:33:56.259Z",
                "hs_object_id": "32628798647"
            },
            "createdAt": "2023-03-17T20:33:55.426Z",
            "updatedAt": "2023-03-17T20:33:56.259Z",
            "archived": false
        },
        {
            "id": "35823075691",
            "properties": {
                "hs_createdate": "2023-06-08T17:17:30.043Z",
                "hs_lastmodifieddate": "2023-06-08T17:17:30.538Z",
                "hs_object_id": "35823075691"
            },
            "createdAt": "2023-06-08T17:17:30.043Z",
            "updatedAt": "2023-06-08T17:17:30.538Z",
            "archived": false
        },
        {
            "id": "35822477983",
            "properties": {
                "hs_createdate": "2023-06-08T17:17:51.978Z",
                "hs_lastmodifieddate": "2023-06-08T17:17:52.543Z",
                "hs_object_id": "35822477983"
            },
            "createdAt": "2023-06-08T17:17:51.978Z",
            "updatedAt": "2023-06-08T17:17:52.543Z",
            "archived": false
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please give it a try and let us know how it goes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have fun building! — Jaycee&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 17:26:44 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Grab-all-meetings-with-associated-contact/m-p/804787#M64723</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-06-08T17:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: Grab all meetings with associated contact</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Grab-all-meetings-with-associated-contact/m-p/804888#M64729</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;&amp;nbsp;! Yes, I've looked into that and I believe that can only search specific contacts and not all contacts associated with a meeting. I tried to change that filter's operator to HAS_PROPERTY but unfortunately, it doesn't work. Would you happen to know if there's another workaround? I believe since HubSpot has API rate limits up to 10k, at some point, using the current method I have wouldn't be sustainable.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 20:45:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Grab-all-meetings-with-associated-contact/m-p/804888#M64729</guid>
      <dc:creator>Yel-o</dc:creator>
      <dc:date>2023-06-08T20:45:25Z</dc:date>
    </item>
  </channel>
</rss>

