Hello devs,
This is related to my previous message.
I’m building a data migration pipeline using HubSpot’s Imports API, importing three CSV files: Contacts, Companies, and Deals.
Each file contains an entityId field used to associate records across objects:
Contacts use email as their unique identifier (standard behavior).
Companies use entityId as the unique value.
Deals use orderid as the unique value.
The import successfully sets up the relationships:
Deals → Contacts,
Contacts → Companies.
However, the customer now wants the Deals to be associated with the Companies also. Is this possible using the import API? Anyone has experience with this? I tried various things but no luck.
Thanks