<?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: Association's typeId field is not unique in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1174870#M83138</link>
    <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;.&lt;BR /&gt;&lt;SPAN&gt;Sorry, maybe I'm not fully understanding what you mean. I don’t have any issues creating specific associations. The issue is identifying which label corresponds to which association configuration when they both share the same &lt;CODE data-start="1708" data-end="1716"&gt;typeId&lt;/CODE&gt;.&amp;nbsp;&lt;/SPAN&gt;For example, in my app, I want to display how many associations a user can create for a specific label.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jul 2025 09:52:51 GMT</pubDate>
    <dc:creator>Sachavskyi</dc:creator>
    <dc:date>2025-07-10T09:52:51Z</dc:date>
    <item>
      <title>Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1166801#M82728</link>
      <description>&lt;P&gt;I want to create a new association label between Contact (0-1) and Company (0-2). So I sent the following request:&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;POST https://api.hubapi.com/crm/v4/associations/0-1/0-2/labels HTTP/1.1&lt;BR /&gt;....&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;    "label": "Referred By",&lt;BR /&gt;    "name": "referredby"&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;And received this response:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;HTTP/1.1 200 OK&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;    "results": [&lt;BR /&gt;        {&lt;BR /&gt;            "category": "USER_DEFINED",&lt;BR /&gt;            "typeId": 1,&lt;BR /&gt;            "label": "Referred By"&lt;BR /&gt;        },&lt;BR /&gt;        {&lt;BR /&gt;            "category": "USER_DEFINED",&lt;BR /&gt;            "typeId": 2,&lt;BR /&gt;            "label": "Referred By"&lt;BR /&gt;        }&lt;BR /&gt;    ]&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Then, I sent a request to retrieve all association labels between Contact and Company:&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;GET https://api.hubapi.com/crm/v4/associations/0-1/0-2/labels HTTP/1.1&lt;/PRE&gt;
&lt;P&gt;And got the following response:&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;HTTP/1.1 200 OK&lt;BR /&gt;.....&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;    "results": [&lt;BR /&gt;        {&lt;BR /&gt;            "category": "USER_DEFINED",&lt;BR /&gt;            "typeId": 1,&lt;BR /&gt;            "label": "Referred By"&lt;BR /&gt;        },&lt;BR /&gt;        {&lt;BR /&gt;            "category": "HUBSPOT_DEFINED",&lt;BR /&gt;            "typeId": 931,&lt;BR /&gt;            "label": "Billing Contact"&lt;BR /&gt;        },&lt;BR /&gt;        {&lt;BR /&gt;            "category": "HUBSPOT_DEFINED",&lt;BR /&gt;            "typeId": 279,&lt;BR /&gt;            "label": null&lt;BR /&gt;        },&lt;BR /&gt;        {&lt;BR /&gt;            "category": "HUBSPOT_DEFINED",&lt;BR /&gt;            "typeId": 1,&lt;BR /&gt;            "label": "Primary"&lt;BR /&gt;        }&lt;BR /&gt;    ]&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Question:&lt;/STRONG&gt;&lt;BR /&gt;Why is the typeId value 1 used for both my custom association label ("Referred By") and a built-in one ("Primary")?&lt;BR /&gt;Shouldn’t typeId values be unique across all labels?&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Jun 2025 14:58:36 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1166801#M82728</guid>
      <dc:creator>Sachavskyi</dc:creator>
      <dc:date>2025-06-19T14:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1166817#M82730</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127312"&gt;@Sachavskyi&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The typeId for association labels in HubSpot isn’t globally unique. It can be the same number for both custom (USER_DEFINED) and built-in (HUBSPOT_DEFINED) labels. That’s why you see typeId 1 for both your “Referred By” label and the “Primary” label.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To avoid confusion, always check both the category and typeId when working with association labels. This is how HubSpot’s API is designed, so it’s expected behavior.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 15:26:37 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1166817#M82730</guid>
      <dc:creator>GiantFocal</dc:creator>
      <dc:date>2025-06-19T15:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1167046#M82743</link>
      <description>&lt;P&gt;It's so confusing. Anyway, thank you,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/577159"&gt;@GiantFocal&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 09:12:22 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1167046#M82743</guid>
      <dc:creator>Sachavskyi</dc:creator>
      <dc:date>2025-06-20T09:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1167212#M82752</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/577159"&gt;@GiantFocal&lt;/a&gt; Thank you for your response! &lt;BR /&gt;I have one more question.&lt;BR /&gt;&lt;SPAN&gt;I'm retrieving the association configuration (specifically, I want to know &lt;CODE data-start="206" data-end="222"&gt;maxToObjectIds&lt;/CODE&gt;) using the &lt;CODE data-start="234" data-end="255"&gt;/crm/v3/schemas/0-1&lt;/CODE&gt; endpoint. In the response, I see two associations with the same ID (it's ok as you explained to me):&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;{&lt;BR /&gt;    &lt;SPAN&gt;"associations"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;[&lt;BR /&gt;        {&lt;BR /&gt;            &lt;SPAN&gt;"fromObjectTypeId"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"0-1"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"toObjectTypeId"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"0-2"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"CONTACT_TO_COMPANY"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"cardinality"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"ONE_TO_ONE"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"inverseCardinality"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"ONE_TO_MANY"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"hasUserEnforcedMaxToObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: false,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"hasUserEnforcedMaxFromObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: false,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"maxToObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"maxFromObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;50000&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"id"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"1"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"createdAt"&lt;/SPAN&gt;&lt;SPAN&gt;: null,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"updatedAt"&lt;/SPAN&gt;&lt;SPAN&gt;: null&lt;BR /&gt;&lt;/SPAN&gt;        }&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;        {&lt;BR /&gt;            &lt;SPAN&gt;"fromObjectTypeId"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"0-1"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"toObjectTypeId"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"0-2"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"referredby"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"cardinality"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"ONE_TO_ONE"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"inverseCardinality"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"ONE_TO_MANY"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"hasUserEnforcedMaxToObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: false,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"hasUserEnforcedMaxFromObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: false,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"maxToObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"maxFromObjectIds"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;50000&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"id"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"1"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"createdAt"&lt;/SPAN&gt;&lt;SPAN&gt;: null,&lt;BR /&gt;&lt;/SPAN&gt;            &lt;SPAN&gt;"updatedAt"&lt;/SPAN&gt;&lt;SPAN&gt;: null&lt;BR /&gt;&lt;/SPAN&gt;        }&lt;BR /&gt;    ]&lt;BR /&gt;}&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN&gt;Notice: we don't have &lt;CODE data-start="1708" data-end="1716"&gt;category&lt;/CODE&gt; field here.&lt;BR /&gt;The next step: I want to know labels for this associations and&amp;nbsp;&lt;/SPAN&gt;I sent a request to retrieve all association labels between Contact and Company:&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;GET https://api.hubapi.com/crm/v4/associations/0-1/0-2/labels HTTP/1.1&lt;/PRE&gt;
&lt;P&gt;And got the following response:&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;HTTP/1.1 200 OK&lt;BR /&gt;.....&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;    "results": [&lt;BR /&gt;        {&lt;BR /&gt;            "category": "USER_DEFINED",&lt;BR /&gt;            "typeId": 1,&lt;BR /&gt;            "label": "Referred By"&lt;BR /&gt;        },&lt;BR /&gt;        {&lt;BR /&gt;            "category": "HUBSPOT_DEFINED",&lt;BR /&gt;            "typeId": 1,&lt;BR /&gt;            "label": "Primary"&lt;BR /&gt;        }&lt;BR /&gt;    ]&lt;BR /&gt;}&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG data-start="1571" data-end="1590"&gt;My question is:&lt;/STRONG&gt;&lt;BR data-start="1590" data-end="1593" /&gt;How can I determine which label corresponds to which association configuration when they both share the same &lt;CODE data-start="1708" data-end="1716"&gt;typeId&lt;/CODE&gt;?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 15:44:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1167212#M82752</guid>
      <dc:creator>Sachavskyi</dc:creator>
      <dc:date>2025-06-20T15:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1167566#M82765</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127312"&gt;@Sachavskyi&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically, the ‎`typeId` field isn’t unique across all labels. Instead, it’s only unique within each category (‎`USER_DEFINED` or ‎`HUBSPOT_DEFINED`). That’s why you can have ‎`typeId: 1` for both your custom label (“Referred By”) and the built-in label (“Primary”).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, HubSpot’s API doesn’t give you a straightforward way to link a label directly to a specific association configuration when they share the same ‎`typeId`. The only way to tell them apart is by looking at both the ‎`typeId` and the ‎`category` fields together.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, whenever you’re working with association labels, always check both fields (‎`typeId` and ‎`category`) to make sure you’re referencing the right label. If you need to map these labels to specific associations in your system, you’ll probably need to keep track of that mapping yourself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that clears things up!&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jun 2025 06:26:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1167566#M82765</guid>
      <dc:creator>GiantFocal</dc:creator>
      <dc:date>2025-06-22T06:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1168140#M82791</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/577159"&gt;@GiantFocal&lt;/a&gt;&amp;nbsp;I would be happy to do this:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;The only way to tell them apart is by looking at both the ‎`typeId` and the ‎`category` fields together.&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;but response for&amp;nbsp;&lt;CODE data-start="234" data-end="255"&gt;/crm/v3/schemas/0-1&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;endpoint doesn't have the `category` field, so I can't&amp;nbsp;tell them apart.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 17:19:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1168140#M82791</guid>
      <dc:creator>Sachavskyi</dc:creator>
      <dc:date>2025-06-23T17:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1174753#M83132</link>
      <description>&lt;P&gt;Hey @GiantFocal and @Sachavskyi &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; One additional question.&lt;/P&gt;
&lt;P&gt;Have you thought about trying to:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Query the &lt;CODE&gt;GET .../labels&lt;/CODE&gt; endpoint to find the correct &lt;CODE&gt;category&lt;/CODE&gt; and &lt;CODE&gt;typeId&lt;/CODE&gt; for the desired label.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Use both of these values in the &lt;CODE&gt;PUT&lt;/CODE&gt; request to create the specific association.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="javascript"&gt;{
  "associationCategory": "USER_DEFINED",
  "associationTypeId": 1
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe this is related to what &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127312"&gt;@Sachavskyi&lt;/a&gt;&amp;nbsp;was pointing towards when they noted they must provide both&lt;CODE&gt;associationCategory&lt;/CODE&gt; and &lt;CODE&gt;associationTypeId&lt;/CODE&gt; in the request to create a new association between two records using a specific label.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Talk soon! Jaycee&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 03:12:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1174753#M83132</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2025-07-10T03:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Association's typeId field is not unique</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1174870#M83138</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127074"&gt;@Jaycee_Lewis&lt;/a&gt;.&lt;BR /&gt;&lt;SPAN&gt;Sorry, maybe I'm not fully understanding what you mean. I don’t have any issues creating specific associations. The issue is identifying which label corresponds to which association configuration when they both share the same &lt;CODE data-start="1708" data-end="1716"&gt;typeId&lt;/CODE&gt;.&amp;nbsp;&lt;/SPAN&gt;For example, in my app, I want to display how many associations a user can create for a specific label.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 09:52:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Association-s-typeId-field-is-not-unique/m-p/1174870#M83138</guid>
      <dc:creator>Sachavskyi</dc:creator>
      <dc:date>2025-07-10T09:52:51Z</dc:date>
    </item>
  </channel>
</rss>

