<?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: Where to find all association types? in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/755703#M61401</link>
    <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/493193"&gt;@merc1er&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; I've been down this road myself 🫠 There is not a list to point you to. But there is an endpoint we can use. It's listed here — &lt;A href="https://developers.hubspot.com/docs/api/crm/associations#:~:text=Retrieve%20association%20types" target="_blank" rel="noopener"&gt;Retrieve association types&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;/crm/v4/associations/{fromObjectType}/{toObjectType}/labels&lt;/LI-CODE&gt;
&lt;P&gt;This will return all associations and their typeIds Object &amp;gt; Object, Contacts &amp;gt; Deals, for example.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an example I created for a different post. It's set up to get the associations from a custom object to contacts.&lt;/P&gt;
&lt;P&gt;Request&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{{API URL}}/crm/v4/associations/boat/contacts/labels&lt;/LI-CODE&gt;
&lt;P&gt;Response&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
    "results": [
        {
            "category": "USER_DEFINED",
            "typeId": 15,
            "label": null
        },
        {
            "category": "USER_DEFINED",
            "typeId": 20,
            "label": "Pizza"
        },
        {
            "category": "USER_DEFINED",
            "typeId": 17,
            "label": "tacos"
        },
        {
            "category": "USER_DEFINED",
            "typeId": 22,
            "label": "Hamburger"
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know it is mildly annoying to not have a definitive list, but with the ability to create custom association labels between objects, I understand why it is set up this way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have fun building! — Jaycee&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2023 21:49:02 GMT</pubDate>
    <dc:creator>Jaycee_Lewis</dc:creator>
    <dc:date>2023-02-13T21:49:02Z</dc:date>
    <item>
      <title>Where to find all CRM association types in HubSpot</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/755274#M61381</link>
      <description>&lt;P&gt;I am looking for a list of all Hubspot defined association types (and their corresponding ID).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/api/crm/associations" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/api/crm/associations&lt;/A&gt;, it is shown an example with:&lt;/P&gt;
&lt;PRE&gt;"associationTypeId": 56&lt;/PRE&gt;
&lt;P&gt;But it is not said where this 56 comes from of where to find other associations.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If someone has a link to a list of associations, that would be greatly appreciated! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏🏻&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;I&gt;&lt;SPAN&gt;[Moderator Note: this post was reviewed for relevancy and optimized for clarity on October 21, 2025&lt;/SPAN&gt;&lt;/I&gt;&lt;I&gt;&lt;SPAN&gt;. Thank you for your contributions to the HubSpot Community!]&lt;/SPAN&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 21:56:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/755274#M61381</guid>
      <dc:creator>merc1er</dc:creator>
      <dc:date>2025-10-21T21:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find all association types?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/755703#M61401</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/493193"&gt;@merc1er&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; I've been down this road myself 🫠 There is not a list to point you to. But there is an endpoint we can use. It's listed here — &lt;A href="https://developers.hubspot.com/docs/api/crm/associations#:~:text=Retrieve%20association%20types" target="_blank" rel="noopener"&gt;Retrieve association types&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;/crm/v4/associations/{fromObjectType}/{toObjectType}/labels&lt;/LI-CODE&gt;
&lt;P&gt;This will return all associations and their typeIds Object &amp;gt; Object, Contacts &amp;gt; Deals, for example.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an example I created for a different post. It's set up to get the associations from a custom object to contacts.&lt;/P&gt;
&lt;P&gt;Request&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{{API URL}}/crm/v4/associations/boat/contacts/labels&lt;/LI-CODE&gt;
&lt;P&gt;Response&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
    "results": [
        {
            "category": "USER_DEFINED",
            "typeId": 15,
            "label": null
        },
        {
            "category": "USER_DEFINED",
            "typeId": 20,
            "label": "Pizza"
        },
        {
            "category": "USER_DEFINED",
            "typeId": 17,
            "label": "tacos"
        },
        {
            "category": "USER_DEFINED",
            "typeId": 22,
            "label": "Hamburger"
        }
    ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know it is mildly annoying to not have a definitive list, but with the ability to create custom association labels between objects, I understand why it is set up this way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have fun building! — Jaycee&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 21:49:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/755703#M61401</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-02-13T21:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find all association types?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/755797#M61412</link>
      <description>&lt;P&gt;Thanks for the reply!&lt;/P&gt;&lt;P&gt;So to get the assiocation types, I need to call this endpoint with object types.&lt;/P&gt;&lt;P&gt;Now, would you know if there's a list of objects? I would need to know what available objects are to fill in the&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;toObjectType&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 05:17:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/755797#M61412</guid>
      <dc:creator>merc1er</dc:creator>
      <dc:date>2023-02-14T05:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find all association types?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/877018#M68940</link>
      <description>&lt;P&gt;That is exactly what I'm looking for.&lt;/P&gt;&lt;P&gt;I'm building an Upsert API using object creation and update APIs and Associations APIs.&lt;/P&gt;&lt;P&gt;When I create an object with associations, I don't need the `toObjectType` field. However, when I try to update to an existing object (which includes creating associations with an existing object), I need a `toObjectType`.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to get the `toObjectType` from the `associationTypeId`, but cannot find how to.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 01:45:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/877018#M68940</guid>
      <dc:creator>YKoh3</dc:creator>
      <dc:date>2023-11-09T01:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find all association types?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/889647#M69525</link>
      <description>&lt;P&gt;Second this&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 00:41:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/889647#M69525</guid>
      <dc:creator>JoshMamroud</dc:creator>
      <dc:date>2023-12-06T00:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find all association types?</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/892168#M69655</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/674688"&gt;@JoshMamroud&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can find all&amp;nbsp;&lt;SPAN&gt;the HubSpot defined&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;associationTypeId&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;values here –&amp;nbsp;&lt;A href="https://developers.hubspot.com/docs/api/crm/associations#association-type-id-values" target="_blank" rel="noopener"&gt;Association type ID values&lt;/A&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jaycee&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 20:54:01 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Where-to-find-all-CRM-association-types-in-HubSpot/m-p/892168#M69655</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-12-11T20:54:01Z</dc:date>
    </item>
  </channel>
</rss>

