<?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: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name in Developer Announcements</title>
    <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062819#M889</link>
    <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/53048"&gt;@evaldas&lt;/a&gt;&amp;nbsp;- thank you for the additional context and for sharing the error message!&amp;nbsp;&lt;BR /&gt;I tested this with the example "food_vendor" and received the same error when requesting crm/v3/objects/food_vendors. &lt;BR /&gt;However, when I modified the request to the formats we documented in our docs, I received a 200 with the following requests:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;crm/v3/objects/p_food_vendors&lt;/LI&gt;
&lt;LI&gt;crm/v3/objects/{objectTypeId}&lt;/LI&gt;
&lt;LI&gt;crm/v3/objects/p{portalId}_food_vendors&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I suggest leveraging the formats we have documented to avoid errors. Please feel free to let me know if you have any additional concerns.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Oct 2024 18:04:05 GMT</pubDate>
    <dc:creator>hseligson</dc:creator>
    <dc:date>2024-10-30T18:04:05Z</dc:date>
    <item>
      <title>Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062020#M883</link>
      <description>&lt;P&gt;We are removing the undocumented support for requesting custom object types by their base name (GET/crm/v3/objects/{baseName}) in HubSpot public APIs. All custom object types must be referenced by their unique identifier (object type ID, fully qualified name, or short-hand custom object type name) to ensure clarity and consistency in API interactions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;What's changing?&lt;/H2&gt;
&lt;P&gt;Previously, referring to custom object types by their base name in API requests was possible. For instance, if both a HubSpot-defined object type and a custom object type were named "vendor," using the base name would cause confusion and result in unexpected behavior in API responses.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;As a result, the base name format will no longer be supported after June 24th, 2025. Here is an example using the base name "vendor."&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// Example

GET /crm/v3/objects/vendor&lt;/LI-CODE&gt;
&lt;H6&gt;Instead, you must use one of the following formats for your request:&lt;/H6&gt;
&lt;UL&gt;
&lt;LI aria-level="1"&gt;Using the short-hand custom object type name, aka GET /crm/v3/objects/p_{object_name}&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="markup"&gt;// Example

GET /crm/v3/objects/p_vendor&lt;/LI-CODE&gt;
&lt;UL&gt;
&lt;LI aria-level="1"&gt;Using the GET /crm/v3/objects/objectTypeId&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="markup"&gt;// Example

GET /crm/v3/objects/2-123&lt;/LI-CODE&gt;
&lt;UL&gt;
&lt;LI aria-level="1"&gt;Using the GET /crm/v3/objects/fullyQualifiedName&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="markup"&gt;// Example

GET /crm/v3/objects/p345_vendor&lt;/LI-CODE&gt;
&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2&gt;What does this mean for developers?&lt;/H2&gt;
&lt;P&gt;Failing to update your custom object type API calls that refer to their base name instead of their unique identifier (object type ID, fully qualified name, or short-hand custom object type name) will result in unexpected errors or a failed request, returning a 400 error response:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
status:"error",
message:"Unable to infer object type from: vendor",
correlationId:"cfb4f7d2-c7dc-4b91-a5f1-b0fa417ae2e8"
}
&lt;/LI-CODE&gt;
&lt;P&gt;We recommend the following next steps:&lt;/P&gt;
&lt;UL&gt;
&lt;LI aria-level="1"&gt;Review and update your API integrations to ensure that all API requests to custom object types comply with the documented requirements and no longer refer to a custom object type by its base name.&lt;/LI&gt;
&lt;LI aria-level="1"&gt;&lt;A href="https://developers.hubspot.com/docs/api/crm/crm-custom-objects#retrieve-existing-custom-objects" target="_blank" rel="noopener"&gt;Please refer to our API Documentation&lt;/A&gt; for more information on retrieving custom object type data and understanding the available reference formats.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;When is it happening?&lt;/H2&gt;
&lt;P&gt;The implementation of this change will begin on June 18th, 2025, for existing portals currently referencing the path (GET/crm/v3/objects/{baseName}), and will be completely disabled for all end users by June 24th, 2025.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Important Update (Date Change):&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;The release date for removing the undocumented support for requesting custom object types by their base name has been changed. The original date of April 29th, 2025, has moved to June 24th, 2025. Please update your systems and plans accordingly.&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Questions or comments?&lt;/STRONG&gt;&amp;nbsp;Join the forum below for a peer-to-peer discussion.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 17:28:11 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062020#M883</guid>
      <dc:creator>hseligson</dc:creator>
      <dc:date>2025-06-17T17:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062477#M884</link>
      <description>&lt;P&gt;Does this change also apply to references to custom objects in HubL? (e.g., the crm_object function)&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 06:35:53 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062477#M884</guid>
      <dc:creator>BRVNARISHIGE</dc:creator>
      <dc:date>2024-10-30T06:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062672#M886</link>
      <description>&lt;P&gt;There used to be an issue with using the base name if the custom object contained multiple words (i.e. "basketball_teams"). Will the&amp;nbsp;&lt;SPAN&gt;short-hand custom object type name (i.e. "p_basketball_teams") address the multiple word issue?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 14:32:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062672#M886</guid>
      <dc:creator>evaldas</dc:creator>
      <dc:date>2024-10-30T14:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062689#M887</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/53048"&gt;@evaldas&lt;/a&gt;&amp;nbsp;- thank you for your comment! Would you mind telling me more about what sort of issues you would face when leveraging multiple words? I'd love to know more!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 15:03:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062689#M887</guid>
      <dc:creator>hseligson</dc:creator>
      <dc:date>2024-10-30T15:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062762#M888</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/420219"&gt;@hseligson&lt;/a&gt;&amp;nbsp;&amp;nbsp;- sure!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If a custom object was simply named "Vendors" and you used the base name in the request it worked fine because it's a single word:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=""&gt;&lt;CODE&gt;// Example

GET /crm/v3/objects/vendor&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, if the custom object is multiple words, i.e. "Food Vendors", then it would return an error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// Example

GET /crm/v3/objects/food_vendor&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"status":"error",&lt;/P&gt;
&lt;P&gt;"messages":"Unable to infer object type from: food_vendor"&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 16:34:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062762#M888</guid>
      <dc:creator>evaldas</dc:creator>
      <dc:date>2024-10-30T16:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062819#M889</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/53048"&gt;@evaldas&lt;/a&gt;&amp;nbsp;- thank you for the additional context and for sharing the error message!&amp;nbsp;&lt;BR /&gt;I tested this with the example "food_vendor" and received the same error when requesting crm/v3/objects/food_vendors. &lt;BR /&gt;However, when I modified the request to the formats we documented in our docs, I received a 200 with the following requests:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;crm/v3/objects/p_food_vendors&lt;/LI&gt;
&lt;LI&gt;crm/v3/objects/{objectTypeId}&lt;/LI&gt;
&lt;LI&gt;crm/v3/objects/p{portalId}_food_vendors&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I suggest leveraging the formats we have documented to avoid errors. Please feel free to let me know if you have any additional concerns.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 18:04:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062819#M889</guid>
      <dc:creator>hseligson</dc:creator>
      <dc:date>2024-10-30T18:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062920#M890</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/503082"&gt;@BRVNARISHIGE&lt;/a&gt;&amp;nbsp;- This is a great question, and I'll follow up with our product team for confirmation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 21:12:47 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1062920#M890</guid>
      <dc:creator>hseligson</dc:creator>
      <dc:date>2024-10-30T21:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1145383#M1037</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can I clarify if any calls to quote_template will also be affected?&lt;BR /&gt;Also is this specific to v3 or v4 as well?&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 10:43:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1145383#M1037</guid>
      <dc:creator>VPapageorgiou</dc:creator>
      <dc:date>2025-05-07T10:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1146006#M1040</link>
      <description>&lt;P&gt;Hi! This update affect also custom code in Worfklows?&lt;BR /&gt;I've something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;hubspotClient.crm.objects.searchApi.doSearch('seriali', searchBody);&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Need I to update in something like this?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;hubspotClient.crm.objects.searchApi.doSearch('p_seriali', searchBody);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 13:26:47 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1146006#M1040</guid>
      <dc:creator>Pietro-Poli-</dc:creator>
      <dc:date>2025-05-08T13:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1146025#M1041</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/141065"&gt;@Pietro-Poli-&lt;/a&gt;&amp;nbsp;Thank you for your question!&amp;nbsp;&lt;BR /&gt;Yes, this will affect any usage of the base name. Your example is precisely correct.&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI aria-level="1"&gt;Using the shorthand custom object type name, or GET /crm/v3/objects/p_{object_name}&lt;BR /&gt;You can also take a look at the API &lt;A href="https://developers.hubspot.com/docs/guides/api/crm/objects/custom-objects#retrieve-existing-custom-objects" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt; for any additional details about the accepted formats.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 08 May 2025 13:48:32 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1146025#M1041</guid>
      <dc:creator>hseligson</dc:creator>
      <dc:date>2025-05-08T13:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1146031#M1042</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/420219"&gt;@hseligson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 13:56:48 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1146031#M1042</guid>
      <dc:creator>Pietro-Poli-</dc:creator>
      <dc:date>2025-05-08T13:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1155514#M1052</link>
      <description>&lt;P&gt;I have a question. We're using&amp;nbsp; &lt;A href="https://github.com/HubSpot/hubspot-api-python" target="_blank"&gt;https://github.com/HubSpot/hubspot-api-python&lt;/A&gt;. Are you going to update it? I believe&amp;nbsp;this change will affect this library.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 02:00:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1155514#M1052</guid>
      <dc:creator>proflead</dc:creator>
      <dc:date>2025-05-22T02:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1162023#M1065</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/420219"&gt;@hseligson&lt;/a&gt;&amp;nbsp;i also have a similar question in regards to associations.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Will i need to replace code like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return await this.hubspotClient.crm.associations.typesApi.getAll(
        fromObjectType,
        toObjectType,
      );&lt;/LI-CODE&gt;&lt;P&gt;with:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return await this.hubspotClient.crm.associations.typesApi.getAll(
        CustomObjectTypes.includes(fromObjectType)
          ? `p_${fromObjectType}`
          : fromObjectType,
        CustomObjectTypes.includes(toObjectType)
          ? `p_${toObjectType}`
          : toObjectType,
      );&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp; where i have the custom object types defined in an array?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 19:05:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1162023#M1065</guid>
      <dc:creator>DGardner0</dc:creator>
      <dc:date>2025-06-06T19:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1162024#M1066</link>
      <description>&lt;P&gt;Similar question for&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return await this.hubspotClient.crm.properties.coreApi.getByName(
        CustomObjectTypes.includes(objectType) ? `p_${objectType}` : objectType,
        propertyName,
      );&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 06 Jun 2025 19:13:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1162024#M1066</guid>
      <dc:creator>DGardner0</dc:creator>
      <dc:date>2025-06-06T19:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1162950#M1067</link>
      <description>&lt;P&gt;Dear Community,&lt;BR /&gt;&lt;BR /&gt;I would like to extend my heartfelt thanks for all your questions and engagement. I’d like to clarify an important update regarding our HubSpot public APIs. Going forward, any usage that requests custom object types by their base name (GET/crm/v3/objects/{baseName}) will no longer be accessible. This change applies universally, whether the base name is utilized through an association, workflow, or any other means.&lt;BR /&gt;&lt;BR /&gt;Thank you for your understanding!&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;HubSpot Developer Relations&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 14:54:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1162950#M1067</guid>
      <dc:creator>hseligson</dc:creator>
      <dc:date>2025-06-10T14:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Change: Removed Support for Referencing Custom Object Types by Base Name</title>
      <link>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1175265#M1085</link>
      <description>&lt;P&gt;I am using&amp;nbsp;&lt;SPAN&gt;short-hand for my custom object from factura to p_factura and time response is very long in search, create and associations:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(.venv) mojicamarcumplo@Marcos-MacBook-Air migraciones % /Users/mojicamarcumplo/Documents/migraciones/.venv/bin/python /Users/moj&lt;BR /&gt;icamarcumplo/Documents/migraciones/custom_object_huspot.py&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":stopwatch:"&gt;⏱&lt;/span&gt; Tiempo total de ejecución: 150.38 segundos&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Using for search :&amp;nbsp;url = "&lt;A href="https://api.hubapi.com/crm/v3/objects/p_factura/search" target="_blank"&gt;https://api.hubapi.com/crm/v3/objects/p_factura/search&lt;/A&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;with&amp;nbsp;body = {&lt;BR /&gt;"filterGroups": [&lt;BR /&gt;{&lt;BR /&gt;"filters": [&lt;BR /&gt;{&lt;BR /&gt;"propertyName": "rut_proveedor",&lt;BR /&gt;"operator": "EQ",&lt;BR /&gt;"value": "xxxxxxxx"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"propertyName": "numero",&lt;BR /&gt;"operator": "EQ",&lt;BR /&gt;"value": "2344"&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"properties": ["id"], # propiedades a traer&lt;BR /&gt;"limit": 10&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 04:32:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Developer-Announcements/Breaking-Change-Removed-Support-for-Referencing-Custom-Object/m-p/1175265#M1085</guid>
      <dc:creator>MMojica0</dc:creator>
      <dc:date>2025-07-11T04:32:38Z</dc:date>
    </item>
  </channel>
</rss>

