<?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: Create a Note and associating to a company in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1189910#M83802</link>
    <description>&lt;P&gt;Thank you all for your help and guidance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ended up choosing a different approach based on the official HubSpot documentation here:&lt;BR /&gt;HubSpot Associations API v4 - Limitations (&lt;A href="https://developers.hubspot.com/docs/guides/api/crm/associations/associations-v4#limitations" target="_blank"&gt;https://developers.hubspot.com/docs/guides/api/crm/associations/associations-v4#limitations&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifically, I followed the instructions in the "Associate records without a label" section, and this solution worked perfectly for my use case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For anyone else facing the same challenge—where you want to create a note and associate it with a company via the API—here’s what worked reliably for me:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Create the Note first without any associations.&lt;/STRONG&gt;&lt;BR /&gt;I used the standard Notes API to create a note as a standalone object, without linking it to any company, contact, or deal initially.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Associate the created Note to the Company using the unlabeled association PUT endpoint:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;PUT &lt;A href="https://api.hubapi.com/crm/v4/objects/note/{noteId}/associations/default/company/{companyId" target="_blank"&gt;https://api.hubapi.com/crm/v4/objects/note/{noteId}/associations/default/company/{companyId&lt;/A&gt;}&lt;/EM&gt;&lt;BR /&gt;This endpoint creates a default, unlabeled association between the note and the company. No request body is needed; all info is in the URL path.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This two-step approach bypasses many common pitfalls around associationTypeIds and label requirements and works well with the HubSpot private app tokens and scopes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps others in the community who are trying to achieve the same!&lt;/P&gt;</description>
    <pubDate>Mon, 18 Aug 2025 14:09:34 GMT</pubDate>
    <dc:creator>KMakovinyi</dc:creator>
    <dc:date>2025-08-18T14:09:34Z</dc:date>
    <item>
      <title>Create a Note and associating to a company</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188782#M83758</link>
      <description>&lt;P&gt;I am using n8n to make API calls to HubSpot, specifically to automate the creation and association of notes with existing companies.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Setup Details:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I use HTTP Request nodes in n8n for API calls.&lt;/LI&gt;&lt;LI&gt;For authentication, I use the predefined "HubSpot App Token" type in n8n.&lt;/LI&gt;&lt;LI&gt;The token has these permissions/scopes:&lt;UL&gt;&lt;LI&gt;crm.objects.contacts.write&lt;/LI&gt;&lt;LI&gt;crm.objects.companies.write&lt;/LI&gt;&lt;LI&gt;crm.objects.companies.read&lt;/LI&gt;&lt;LI&gt;crm.objects.contacts.read&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;My goal is to create a note for an existing company.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Attempts and Issues:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. I tried the HubSpot Notes API (/crm/v3/objects/notes) based on the official documentation. (&lt;A href="https://developers.hubspot.com/docs/reference/api/crm/engagements/notes#get-%2Fcrm%2Fv3%2Fobjects%2Fnotes" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/reference/api/crm/engagements/notes#get-%2Fcrm%2Fv3%2Fobjects%2Fnotes)&lt;/A&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I was able to create notes successfully, but only when associating with a contact object, not with a company.&lt;/LI&gt;&lt;LI&gt;Attempts to create a note associated with a company in a single request often return errors that treat the company ID as a contact ID (0-1=...), or "one or more associations are not valid".&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;2. I changed to a two-step process:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Step 1: Create a note without any associations (POST /crm/v3/objects/notes).&lt;/LI&gt;&lt;LI&gt;{ "properties": { "hs_note_body": "Note body", "hs_timestamp": "{{Date.now()}}" } }&lt;/LI&gt;&lt;LI&gt;Step 2: Associate the note with a company via the v4 Associations API (POST /crm/v4/associations/company/note/batch/create), using associationTypeId 189 (Company → Note) or 190 (Note → Company).&lt;/LI&gt;&lt;LI&gt;{ "inputs": [ { "from": { "id": "noteId" }, "to": { "id": "companyId" }, "typeId": 190 } ] }&lt;/LI&gt;&lt;LI&gt;Although the note creation succeeds, the association fails (the note does not appear on the company, and retrieval endpoints do not show the association).&lt;/LI&gt;&lt;LI&gt;(&lt;A href="https://developers.hubspot.com/docs/guides/api/crm/associations/associations-v4#limitations" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/guides/api/crm/associations/associations-v4#limitations)&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;My Questions / Challenges:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Is my token missing any crucial scopes/permissions needed specifically to create or associate notes with companies? The current scopes cover contacts and companies read/write but do not include any engagement or activities-related scopes.&lt;/LI&gt;&lt;LI&gt;Are there additional scopes or roles required for using the Notes API and Associations API fully, especially for company associations?&lt;/LI&gt;&lt;LI&gt;Is there a known limitation or different process for associating notes with companies compared to contacts via the API?&lt;/LI&gt;&lt;LI&gt;Could issues around associations being interpreted as "contact" rather than "company" be related to permissions or token scopes?&lt;/LI&gt;&lt;LI&gt;Are there recommended best practices or example payloads specifically for:&lt;UL&gt;&lt;LI&gt;Creating notes&lt;/LI&gt;&lt;LI&gt;Associating notes with companies using n8n’s HTTP Request nodes and the HubSpot App Token authentication?&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Any advice on what scopes or permission adjustments to check or request from the HubSpot admin to enable these operations successfully?&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 14 Aug 2025 13:34:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188782#M83758</guid>
      <dc:creator>KMakovinyi</dc:creator>
      <dc:date>2025-08-14T13:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Note and associating to a company</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188790#M83760</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/978667"&gt;@KMakovinyi&lt;/a&gt;&lt;/SPAN&gt;,&lt;BR /&gt;&lt;BR /&gt;Thank you for posting to the Community!&lt;BR /&gt;&lt;BR /&gt;I'd like to tag in some of our Top Contributors to see if they have any feedback here - &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/9259"&gt;@Mike_Eastwood&lt;/a&gt;&lt;/SPAN&gt; &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/101258"&gt;@Teun&lt;/a&gt; and &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/852299"&gt;@WesQ&lt;/a&gt;&lt;/SPAN&gt; Do you all have any tips on this one?&lt;BR /&gt;&lt;BR /&gt;Cassie, Community Manager&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 13:53:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188790#M83760</guid>
      <dc:creator>chighsmith</dc:creator>
      <dc:date>2025-08-14T13:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Note and associating to a company</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188814#M83762</link>
      <description>&lt;P&gt;Thanks for the detailed breakdown of your setup and tests — it really helps pinpoint what’s going on. Based on HubSpot API behavior and your described workflow in n8n, here’s the situation and what you’ll want to adjust:&lt;/P&gt;&lt;H3&gt;1. &lt;STRONG&gt;Scopes and Permissions&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;The scopes you listed (crm.objects.contacts.* and crm.objects.companies.*) allow CRUD operations on contact and company records, but &lt;STRONG&gt;do not cover activities&lt;/STRONG&gt; like notes, tasks, calls, or emails.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;For working with the Notes API and associating notes with any object type, your private app token needs:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;crm.objects.notes.write&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;crm.objects.notes.read&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;crm.objects.companies.read (already have this)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;crm.objects.companies.write (already have this)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Without the notes scopes, HubSpot will treat note operations as unauthorized or will misinterpret association requests.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;2. &lt;STRONG&gt;Associations Behavior&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;In HubSpot, associations are &lt;STRONG&gt;type-specific&lt;/STRONG&gt; — you can’t reuse a “contact association” ID for a company, even if the entity ID matches.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;When using the v4 Associations API:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Use the &lt;STRONG&gt;correct associationTypeId&lt;/STRONG&gt; for company ↔ note.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;From company to note: type ID = 190&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;From note to company: type ID = 189&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Ensure the "from" and "to" objects in your payload match the direction of the association type ID.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this helps, or if you have any other questions!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;SPAN class="lia-unicode-emoji"&gt;&lt;SPAN class="lia-unicode-emoji"&gt;&lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Was I able to help answer your question? Help the community by&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;marking it as a solution.&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="20.365535248041773%" height="191px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrandonWoodruff_0-1755181807160.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/153251i16476DB288AD59B2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrandonWoodruff_0-1755181807160.jpeg" alt="BrandonWoodruff_0-1755181807160.jpeg" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="79.50391644908615%" height="191px"&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://www.linkedin.com/in/brandon-woody-woodruff/" target="_blank" rel="noopener nofollow noreferrer"&gt;Brandon Woodruff&lt;/A&gt;&lt;BR /&gt;&lt;/STRONG&gt;Senior Software Developer @&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.pearagon.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;Pearagon&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Still have questions? Reach out at&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="mailto:brandon@pearagon.com" target="_blank" rel="noopener nofollow noreferrer"&gt;brandon@pearagon.com&lt;/A&gt;&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrandonWoodruff_1-1755181807103.png" style="width: 200px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/153250i2027D7BBDFF75F93/image-size/small?v=v2&amp;amp;px=200" role="button" title="BrandonWoodruff_1-1755181807103.png" alt="BrandonWoodruff_1-1755181807103.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 14:30:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188814#M83762</guid>
      <dc:creator>BrandonWoodruff</dc:creator>
      <dc:date>2025-08-14T14:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Note and associating to a company</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188829#M83764</link>
      <description>&lt;P class=""&gt;Thank you for your detailed help and insights.&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;Here is the situation regarding the scopes available to me for the private app token:&lt;BR /&gt;I have reviewed the scopes that are currently available in my HubSpot private app token configuration. These include many CRM-related scopes&lt;/P&gt;&lt;P class=""&gt;(crm.dealsplits.read_write, crm.export, crm.import, crm.lists.read, crm.lists.write, crm.objects.appointments.read, crm.objects.appointments.sensitive.read, crm.objects.appointments.write, crm.objects.carts.read, crm.objects.carts.write, crm.objects.commercepayments.read, crm.objects.commercepayments.write, crm.objects.companies.highly_sensitive.read, crm.objects.companies.read, crm.objects.companies.sensitive.read, crm.objects.companies.write, crm.objects.contacts.highly_sensitive.read, crm.objects.contacts.read, crm.objects.contacts.sensitive.read, crm.objects.contacts.write, crm.objects.courses.read, crm.objects.courses.write, crm.objects.custom.highly_sensitive.read, crm.objects.custom.read, crm.objects.custom.sensitive.read, crm.objects.custom.write, crm.objects.deals.highly_sensitive.read, crm.objects.deals.read, crm.objects.deals.sensitive.read, crm.objects.deals.write, crm.objects.feedback_submissions.read, crm.objects.goals.read, crm.objects.goals.write, crm.objects.invoices.read, crm.objects.invoices.write, crm.objects.leads.read, crm.objects.leads.write, crm.objects.line_items.read, crm.objects.line_items.write, crm.objects.listings.read, crm.objects.listings.write, crm.objects.marketing_events.read, crm.objects.marketing_events.write, crm.objects.orders.read, crm.objects.orders.write, crm.objects.owners.read, crm.objects.partner-clients.read, crm.objects.partner-clients.write, crm.objects.partner-services.read, crm.objects.partner-services.write, crm.objects.products.read, crm.objects.products.write, crm.objects.quotes.read, crm.objects.quotes.write, crm.objects.services.read, crm.objects.services.write, crm.objects.subscriptions.read, crm.objects.subscriptions.write, crm.objects.users.read, crm.objects.users.write, crm.pipelines.orders.read, crm.pipelines.orders.write, crm.schemas.appointments.read, crm.schemas.appointments.write, crm.schemas.carts.read, crm.schemas.carts.write, crm.schemas.commercepayments.read, crm.schemas.commercepayments.write, crm.schemas.companies.read, crm.schemas.companies.write, crm.schemas.contacts.read, crm.schemas.contacts.write, crm.schemas.courses.read, crm.schemas.courses.write, crm.schemas.custom.read, crm.schemas.custom.write, crm.schemas.deals.read, crm.schemas.deals.write, crm.schemas.invoices.read, crm.schemas.invoices.write, crm.schemas.line_items.read, crm.schemas.listings.read, crm.schemas.listings.write, crm.schemas.orders.read, crm.schemas.orders.write, crm.schemas.quotes.read, crm.schemas.services.read, crm.schemas.services.write, crm.schemas.subscriptions.read, crm.schemas.subscriptions.write)&lt;/P&gt;&lt;P class=""&gt;, but I do&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;not&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;see any note-related scopes such as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;crm.objects.notes.read&amp;nbsp;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;crm.objects.notes.write.&lt;/P&gt;&lt;P class=""&gt;I wanted to ask if it might be the case that the reason I don't see note-related scopes available for selection could be due to:&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;Regional availability:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Some API scopes or features might be restricted or not yet enabled in the HubSpot region or data center in which my account is hosted.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;STRONG&gt;Subscription limitations:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Perhaps my current HubSpot subscription plan or tier does not include permissions to use or manage notes via the API, and so the scopes for notes simply do not appear for private app tokens in my account.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;Could you please clarify if either of these reasons (regional restrictions or subscription tier limitations) might explain the absence of note-related scopes? Or is there another explanation or a specific way to enable these scopes for the private app token?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;I appreciate your support and look forward to your guidance.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 14:55:32 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188829#M83764</guid>
      <dc:creator>KMakovinyi</dc:creator>
      <dc:date>2025-08-14T14:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Note and associating to a company</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188832#M83765</link>
      <description>&lt;P&gt;Apologies, your scopes actually look correct, and you don't need anything more then what you have. I would instead make sure that you are using the correct association ids.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 15:04:30 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1188832#M83765</guid>
      <dc:creator>BrandonWoodruff</dc:creator>
      <dc:date>2025-08-14T15:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Note and associating to a company</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1189197#M83782</link>
      <description>&lt;P&gt;&lt;STRONG&gt;To confirm my understanding based on your previous guidance:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If I configure my n8n HTTP Request node with the details below and supply a valid noteId and companyId, this API call should successfully associate the note with the company. As a result, the note should appear in the HubSpot user interface, specifically in the "Notes" section under the associated company.&lt;/P&gt;&lt;P&gt;Is my understanding correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is the setup I plan to use:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Method: POST&lt;BR /&gt;URL: &lt;STRONG&gt;&lt;A href="https://api.hubapi.com/crm/v4/associations/note/company/batch/create" target="_blank"&gt;https://api.hubapi.com/crm/v4/associations/note/company/batch/create&lt;/A&gt;&lt;/STRONG&gt;&lt;BR /&gt;Authentication: Predefined Credential Type&lt;BR /&gt;Credential Type: Hubspot App Token&lt;BR /&gt;Hubspot App Token: "My Token"&lt;BR /&gt;Send Query Parameters: false&lt;BR /&gt;Send Headers: false&lt;BR /&gt;Send Body: true&lt;BR /&gt;Body Content Type: JSON&lt;BR /&gt;Specify Body: Using JSON&lt;BR /&gt;JSON:&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; "inputs": [&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "from": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "id": "noteId"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "to": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "id": "companyId"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "typeId": 189&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; }&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; ]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please confirm whether, with this exact approach and valid IDs, the note will be visible as expected in the company’s Notes section in the HubSpot user interface?&lt;BR /&gt;If not, could you clarify what might be missing or whether a different association direction or type ID should be used to achieve this result?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help and clarification!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2025 12:43:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1189197#M83782</guid>
      <dc:creator>KMakovinyi</dc:creator>
      <dc:date>2025-08-15T12:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Note and associating to a company</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1189910#M83802</link>
      <description>&lt;P&gt;Thank you all for your help and guidance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ended up choosing a different approach based on the official HubSpot documentation here:&lt;BR /&gt;HubSpot Associations API v4 - Limitations (&lt;A href="https://developers.hubspot.com/docs/guides/api/crm/associations/associations-v4#limitations" target="_blank"&gt;https://developers.hubspot.com/docs/guides/api/crm/associations/associations-v4#limitations&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifically, I followed the instructions in the "Associate records without a label" section, and this solution worked perfectly for my use case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For anyone else facing the same challenge—where you want to create a note and associate it with a company via the API—here’s what worked reliably for me:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Create the Note first without any associations.&lt;/STRONG&gt;&lt;BR /&gt;I used the standard Notes API to create a note as a standalone object, without linking it to any company, contact, or deal initially.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Associate the created Note to the Company using the unlabeled association PUT endpoint:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;PUT &lt;A href="https://api.hubapi.com/crm/v4/objects/note/{noteId}/associations/default/company/{companyId" target="_blank"&gt;https://api.hubapi.com/crm/v4/objects/note/{noteId}/associations/default/company/{companyId&lt;/A&gt;}&lt;/EM&gt;&lt;BR /&gt;This endpoint creates a default, unlabeled association between the note and the company. No request body is needed; all info is in the URL path.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This two-step approach bypasses many common pitfalls around associationTypeIds and label requirements and works well with the HubSpot private app tokens and scopes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps others in the community who are trying to achieve the same!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2025 14:09:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Create-a-Note-and-associating-to-a-company/m-p/1189910#M83802</guid>
      <dc:creator>KMakovinyi</dc:creator>
      <dc:date>2025-08-18T14:09:34Z</dc:date>
    </item>
  </channel>
</rss>

