<?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 all engagement properties in V3 API in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Get-all-engagement-properties-in-V3-API/m-p/1024348#M75713</link>
    <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/426475"&gt;@coldrickjack&lt;/a&gt;&amp;nbsp;, thanks a lot for your answer ! This was right in the documentation, I don't know how I managed not to see it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Aug 2024 20:45:28 GMT</pubDate>
    <dc:creator>ArnaudStephan</dc:creator>
    <dc:date>2024-08-08T20:45:28Z</dc:date>
    <item>
      <title>Get all engagement properties in V3 API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Get-all-engagement-properties-in-V3-API/m-p/1024156#M75691</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to fetch our engagements (calls, emails, notes, etc.) using this endpoint :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://api.hubapi.com/engagements/v1/engagements/paged" target="_blank" rel="noopener"&gt;https://api.hubapi.com/engagements/v1/engagements/paged&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The problem is that it is very long to finish the initial import, even though I am aware that when it is done I can use the endpoint to get the most recent engagements.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I would like to use the V3 API to get specific engagements, using this endpoint :&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://api.hubapi.com/crm/v3/objects/calls" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/calls&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;But the problem is that the response does not contain the association details like in the V1 : how can I know the deal, the company, the contact, associated with a specific call ?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 08 Aug 2024 15:06:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Get-all-engagement-properties-in-V3-API/m-p/1024156#M75691</guid>
      <dc:creator>ArnaudStephan</dc:creator>
      <dc:date>2024-08-08T15:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get all engagement properties in V3 API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Get-all-engagement-properties-in-V3-API/m-p/1024174#M75692</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/806658"&gt;@ArnaudStephan&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can do this by appending "associations={objectType}" to your request. For instance if I wanted to get associated contacts I can use "associations=contacts" as shown below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;GET https://api.hubapi.com/crm/v3/objects/calls?associations=contact
RESPONSE

{
    "results": [
        {
            "id": "31320117455",
            "properties": {
                "hs_createdate": "2024-08-08T15:34:39.546Z",
                "hs_lastmodifieddate": "2024-08-08T15:34:47.250Z",
                "hs_object_id": "31320117455"
            },
            "createdAt": "2024-08-08T15:34:39.546Z",
            "updatedAt": "2024-08-08T15:34:47.250Z",
            "archived": false,
            "associations": {
                "contacts": {
                    "results": [
                        {
                            "id": "28333023942",
                            "type": "call_to_contact"
                        }
                    ]
                }
            }
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;Jack&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 15:36:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Get-all-engagement-properties-in-V3-API/m-p/1024174#M75692</guid>
      <dc:creator>coldrickjack</dc:creator>
      <dc:date>2024-08-08T15:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Get all engagement properties in V3 API</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Get-all-engagement-properties-in-V3-API/m-p/1024348#M75713</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/426475"&gt;@coldrickjack&lt;/a&gt;&amp;nbsp;, thanks a lot for your answer ! This was right in the documentation, I don't know how I managed not to see it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 20:45:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Get-all-engagement-properties-in-V3-API/m-p/1024348#M75713</guid>
      <dc:creator>ArnaudStephan</dc:creator>
      <dc:date>2024-08-08T20:45:28Z</dc:date>
    </item>
  </channel>
</rss>

