<?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: Associations object missing from V3 CRM Search API response in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1169479#M82864</link>
    <description>&lt;P&gt;&lt;SPAN class=""&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/346639"&gt;@GRajput&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thank you so much for your suggestion! That is exactly the method I have been trying to use.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Unfortunately, the problem persists even when following the 2-step process you described. I get the list of &lt;/SPAN&gt;&lt;SPAN class=""&gt;callId&lt;/SPAN&gt;&lt;SPAN class=""&gt;s successfully, but the subsequent &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request for the individual call details is still missing the &lt;/SPAN&gt;&lt;SPAN class=""&gt;associations&lt;/SPAN&gt;&lt;SPAN class=""&gt; object.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Here is a more detailed breakdown of my process and the issue, from my original post:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;My Goal:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; To fetch recent activities (calls, meetings, etc.) and list their associated contacts and companies.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;My Method (2-Step Process):&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Search for Activities:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; I first use the &lt;/SPAN&gt;&lt;SPAN class=""&gt;POST /crm/v3/objects/calls/search&lt;/SPAN&gt;&lt;SPAN class=""&gt; (and &lt;/SPAN&gt;&lt;SPAN class=""&gt;/meetings/search&lt;/SPAN&gt;&lt;SPAN class=""&gt;, etc.) endpoints to get a list of recent activity IDs. This step works perfectly, and I get a list of activity objects.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Get Details with Associations:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; For each &lt;/SPAN&gt;&lt;SPAN class=""&gt;activityId&lt;/SPAN&gt;&lt;SPAN class=""&gt; returned from the search, I then make a separate &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request to the specific engagement endpoint, explicitly requesting associations via the query string, as per the documentation: &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET &lt;A href="https://api.hubapi.com/crm/v3/objects/calls/{callId}?associations=CONTACT,COMPANY" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/calls/{callId}?associations=CONTACT,COMPANY&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;The Problem:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; While both API calls succeed with a &lt;/SPAN&gt;&lt;SPAN class=""&gt;200 OK&lt;/SPAN&gt;&lt;SPAN class=""&gt; status, the response body from the crucial second &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request is &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;still missing the &lt;/SPAN&gt;&lt;SPAN class=""&gt;associations&lt;/SPAN&gt;&lt;SPAN class=""&gt; object&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Here is a real, simplified example of a response I receive from the &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET /objects/calls/{callId}&lt;/SPAN&gt;&lt;SPAN class=""&gt; endpoint:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;{
  "id": "81971752298",
  "properties": {
    "hs_call_body": "트라이얼 이메일 재발송 안내",
    "hs_timestamp": "2025-06-23T05:28:11.196Z",
    "hubspot_owner_id": "79379005"
    /* ... other properties ... */
  },
  "createdAt": "2025-06-23T05:28:11.196Z",
  "updatedAt": "2025-06-23T05:28:22.015Z",
  "archived": false
  // The "associations" object is completely missing from this response.
}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;What I've Checked:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN class=""&gt;My Private App has the required &lt;/SPAN&gt;&lt;SPAN class=""&gt;crm.objects.contacts.read&lt;/SPAN&gt;&lt;SPAN class=""&gt; and &lt;/SPAN&gt;&lt;SPAN class=""&gt;crm.objects.companies.read&lt;/SPAN&gt;&lt;SPAN class=""&gt; scopes enabled.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN class=""&gt;I have manually verified in the HubSpot UI that the specific &lt;/SPAN&gt;&lt;SPAN class=""&gt;callId&lt;/SPAN&gt;&lt;SPAN class=""&gt; (&lt;/SPAN&gt;&lt;SPAN class=""&gt;81971752298&lt;/SPAN&gt;&lt;SPAN class=""&gt; in this example) is definitely associated with a contact and a company.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN class=""&gt;The &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; API call itself is successful; it just doesn't contain the requested association data.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;Given that I am already using the method you recommended, is there any other reason (perhaps a specific, less-obvious scope, or a portal-level setting) that would cause the &lt;/SPAN&gt;&lt;SPAN class=""&gt;associations&lt;/SPAN&gt;&lt;SPAN class=""&gt; object to be omitted from the response of a direct &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request, even when the &lt;/SPAN&gt;&lt;SPAN class=""&gt;?associations=...&lt;/SPAN&gt;&lt;SPAN class=""&gt; query parameter is included?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thank you again for your help!&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jun 2025 07:01:43 GMT</pubDate>
    <dc:creator>HenryJ</dc:creator>
    <dc:date>2025-06-26T07:01:43Z</dc:date>
    <item>
      <title>Associations object missing from V3 CRM Search API response</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1167718#M82779</link>
      <description>&lt;P&gt;Hello developers,&lt;/P&gt;&lt;P&gt;I'm encountering an issue with the V3 CRM Search API where the associations object is not being returned, even when explicitly requested. I'm hoping someone in the community might have some insight.&lt;/P&gt;&lt;P&gt;The Goal:&lt;BR /&gt;I'm trying to fetch recent calls and their associated contacts and companies.&lt;/P&gt;&lt;P&gt;The API Call:&lt;BR /&gt;I am making a POST request to the following endpoint:&lt;BR /&gt;&lt;A href="https://api.hubapi.com/crm/v3/objects/calls/search" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/calls/search&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The Request Payload:&lt;BR /&gt;My request body is structured correctly and specifically includes the associations property, like this:&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"limit": 10,&lt;BR /&gt;"sorts": [{&lt;BR /&gt;"propertyName": "hs_createdate",&lt;BR /&gt;"direction": "DESCENDING"&lt;BR /&gt;}],&lt;BR /&gt;"properties": [&lt;BR /&gt;"hs_call_body",&lt;BR /&gt;"hs_timestamp",&lt;BR /&gt;"hubspot_owner_id"&lt;BR /&gt;],&lt;BR /&gt;"associations": [&lt;BR /&gt;"CONTACT",&lt;BR /&gt;"COMPANY"&lt;BR /&gt;]&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;The Problem:&lt;BR /&gt;The API call succeeds with a 200 OK status. However, the response body for each result is completely missing the associations object.&lt;/P&gt;&lt;P&gt;Here is a simplified example of what I receive for each call record:&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"id": "123456789",&lt;BR /&gt;"properties": {&lt;BR /&gt;"hs_call_body": "Discussed project details.",&lt;BR /&gt;"hs_timestamp": "2025-06-21T14:00:00.000Z",&lt;BR /&gt;"hubspot_owner_id": "987654321"&lt;BR /&gt;},&lt;BR /&gt;"createdAt": "...",&lt;BR /&gt;"updatedAt": "...",&lt;BR /&gt;"archived": false&lt;BR /&gt;// The "associations" object is expected here, but it's missing.&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;What I've Checked:&lt;/P&gt;&lt;P&gt;My Private App has the necessary crm.objects.contacts.read and crm.objects.companies.read scopes enabled.&lt;/P&gt;&lt;P&gt;I have confirmed in the HubSpot UI that the calls I am fetching are indeed associated with contacts and companies.&lt;/P&gt;&lt;P&gt;The API call works perfectly otherwise; it just doesn't return the associations.&lt;/P&gt;&lt;P&gt;Has anyone else experienced this issue or have any idea why the associations object would be missing from a successful 200 OK response, despite being requested in the payload?&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated. Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 00:59:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1167718#M82779</guid>
      <dc:creator>HenryJ</dc:creator>
      <dc:date>2025-06-23T00:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Associations object missing from V3 CRM Search API response</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1168075#M82788</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/839469"&gt;@HenryJ&lt;/a&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the Community!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to invite some members of our community who may offer valuable insights.— hey &lt;STRONG&gt;&lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/346639"&gt;@GRajput&lt;/a&gt;&lt;/SPAN&gt;, &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/101258"&gt;@Teun&lt;/a&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/577159"&gt;@GiantFocal&lt;/a&gt;&lt;/SPAN&gt; &lt;/STRONG&gt;- Could you share your advice with &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/839469"&gt;@HenryJ&lt;/a&gt;&lt;/SPAN&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for taking a look!&lt;/P&gt;
&lt;P&gt;Diana&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 15:30:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1168075#M82788</guid>
      <dc:creator>DianaGomez</dc:creator>
      <dc:date>2025-06-23T15:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Associations object missing from V3 CRM Search API response</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1168498#M82812</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/839469"&gt;@HenryJ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you are trying to fetch the associated Contacts and Company, you should get the call Id first and then use the read calls API, there you would fine the association parameter. Using this will get the association. Let me know if the problem still persists.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Here is the API endpoint -&amp;nbsp;&lt;A href="https://api.hubapi.com/crm/v3/objects/calls/%7BcallId%7D" target="_blank"&gt;https://api.hubapi.com/crm/v3/objects/calls/%7BcallId%7D&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;DOC link -&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/reference/api/crm/engagements/calls" target="_blank"&gt;https://developers.hubspot.com/docs/reference/api/crm/engagements/calls&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this will help you out. Please mark it as &lt;/SPAN&gt;&lt;STRONG&gt;Solution Accepted and upvote&lt;/STRONG&gt;&lt;SPAN&gt; to help another Community member.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jun 2025 11:35:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1168498#M82812</guid>
      <dc:creator>GRajput</dc:creator>
      <dc:date>2025-06-24T11:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Associations object missing from V3 CRM Search API response</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1169479#M82864</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/346639"&gt;@GRajput&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thank you so much for your suggestion! That is exactly the method I have been trying to use.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Unfortunately, the problem persists even when following the 2-step process you described. I get the list of &lt;/SPAN&gt;&lt;SPAN class=""&gt;callId&lt;/SPAN&gt;&lt;SPAN class=""&gt;s successfully, but the subsequent &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request for the individual call details is still missing the &lt;/SPAN&gt;&lt;SPAN class=""&gt;associations&lt;/SPAN&gt;&lt;SPAN class=""&gt; object.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Here is a more detailed breakdown of my process and the issue, from my original post:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;My Goal:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; To fetch recent activities (calls, meetings, etc.) and list their associated contacts and companies.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;My Method (2-Step Process):&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Search for Activities:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; I first use the &lt;/SPAN&gt;&lt;SPAN class=""&gt;POST /crm/v3/objects/calls/search&lt;/SPAN&gt;&lt;SPAN class=""&gt; (and &lt;/SPAN&gt;&lt;SPAN class=""&gt;/meetings/search&lt;/SPAN&gt;&lt;SPAN class=""&gt;, etc.) endpoints to get a list of recent activity IDs. This step works perfectly, and I get a list of activity objects.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Get Details with Associations:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; For each &lt;/SPAN&gt;&lt;SPAN class=""&gt;activityId&lt;/SPAN&gt;&lt;SPAN class=""&gt; returned from the search, I then make a separate &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request to the specific engagement endpoint, explicitly requesting associations via the query string, as per the documentation: &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET &lt;A href="https://api.hubapi.com/crm/v3/objects/calls/{callId}?associations=CONTACT,COMPANY" target="_blank" rel="noopener"&gt;https://api.hubapi.com/crm/v3/objects/calls/{callId}?associations=CONTACT,COMPANY&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;The Problem:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt; While both API calls succeed with a &lt;/SPAN&gt;&lt;SPAN class=""&gt;200 OK&lt;/SPAN&gt;&lt;SPAN class=""&gt; status, the response body from the crucial second &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request is &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;still missing the &lt;/SPAN&gt;&lt;SPAN class=""&gt;associations&lt;/SPAN&gt;&lt;SPAN class=""&gt; object&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Here is a real, simplified example of a response I receive from the &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET /objects/calls/{callId}&lt;/SPAN&gt;&lt;SPAN class=""&gt; endpoint:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;{
  "id": "81971752298",
  "properties": {
    "hs_call_body": "트라이얼 이메일 재발송 안내",
    "hs_timestamp": "2025-06-23T05:28:11.196Z",
    "hubspot_owner_id": "79379005"
    /* ... other properties ... */
  },
  "createdAt": "2025-06-23T05:28:11.196Z",
  "updatedAt": "2025-06-23T05:28:22.015Z",
  "archived": false
  // The "associations" object is completely missing from this response.
}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;What I've Checked:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN class=""&gt;My Private App has the required &lt;/SPAN&gt;&lt;SPAN class=""&gt;crm.objects.contacts.read&lt;/SPAN&gt;&lt;SPAN class=""&gt; and &lt;/SPAN&gt;&lt;SPAN class=""&gt;crm.objects.companies.read&lt;/SPAN&gt;&lt;SPAN class=""&gt; scopes enabled.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN class=""&gt;I have manually verified in the HubSpot UI that the specific &lt;/SPAN&gt;&lt;SPAN class=""&gt;callId&lt;/SPAN&gt;&lt;SPAN class=""&gt; (&lt;/SPAN&gt;&lt;SPAN class=""&gt;81971752298&lt;/SPAN&gt;&lt;SPAN class=""&gt; in this example) is definitely associated with a contact and a company.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN class=""&gt;The &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; API call itself is successful; it just doesn't contain the requested association data.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;Given that I am already using the method you recommended, is there any other reason (perhaps a specific, less-obvious scope, or a portal-level setting) that would cause the &lt;/SPAN&gt;&lt;SPAN class=""&gt;associations&lt;/SPAN&gt;&lt;SPAN class=""&gt; object to be omitted from the response of a direct &lt;/SPAN&gt;&lt;SPAN class=""&gt;GET&lt;/SPAN&gt;&lt;SPAN class=""&gt; request, even when the &lt;/SPAN&gt;&lt;SPAN class=""&gt;?associations=...&lt;/SPAN&gt;&lt;SPAN class=""&gt; query parameter is included?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thank you again for your help!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 07:01:43 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1169479#M82864</guid>
      <dc:creator>HenryJ</dc:creator>
      <dc:date>2025-06-26T07:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Associations object missing from V3 CRM Search API response</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1169512#M82870</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/839469"&gt;@HenryJ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hey, I just tried to get the associated contact and company using the call ID, and I was able to get the details. Please see the screenshot attached, in the response body, you see the associated contact and company ID. &lt;BR /&gt;endpoint used -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://api.hubapi.com/crm/v3/objects/calls/%7BcallId%7D" target="_blank"&gt;https://api.hubapi.com/crm/v3/objects/calls/%7BcallId%7D&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GRajput_0-1750925028868.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/149364iB84C6883659EAD8B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GRajput_0-1750925028868.png" alt="GRajput_0-1750925028868.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;curl --request GET \
  --url 'https://api.hubapi.com/crm/v3/objects/calls/82116010090?associations=contacts%2Ccompanies&amp;amp;archived=false' \
  --header 'authorization: Bearer YOUR ACCESS TOKEN'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 08:03:59 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Associations-object-missing-from-V3-CRM-Search-API-response/m-p/1169512#M82870</guid>
      <dc:creator>GRajput</dc:creator>
      <dc:date>2025-06-26T08:03:59Z</dc:date>
    </item>
  </channel>
</rss>

