Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
DataProcessor
Regular Visitor

Missing data when connecting Azure Data Factory to Hubspot

I am trying to get data from the contacts table into a microsoft fabric lakehouse. I first created a public app with all the scopes it would need to access I got the credentials and successfully created a linked service in Azure Data Factory to hubspot. I then created a dataset for the contacts table, following which created a copy activty to copy all the data to my lakehouse table. I followed this documentation 

https://learn.microsoft.com/en-us/azure/data-factory/connector-hubspot?tabs=data-factory

I am only getting the firstname, lastname and emails. All of the other columns are null. Quite a few are missing as well, despite being present in the mapping. According to the documentation, the conncetor only requests the default contact properties rather than the full set, and I need to specify the properties I want. This is what hubspot support is telling me:

 

  • In your Azure Data Factory HubSpot source (Linked Service/Dataset), locate the option to specify properties (often an “Additional properties/fields” or “Query parameters” setting).

Where can I find this setting? I am unable to locatre it in ADF.

Thank you!

1 ACCEPTED SOLUTION
tayloramy
Super User
Super User

Hi @DataProcessor,

 

You’re hitting a known gap: the native ADF “HubSpot” connector doesn’t expose a UI field to pass the properties= list that HubSpot’s v3 CRM APIs require. As a result, you only get the default contact properties (e.g., firstname, lastname, email) and everything else comes back null.


Use the ADF REST connector (not the HubSpot connector) and call HubSpot’s Contacts API directly, adding your desired fields via the properties query parameter. Example endpoint:
/crm/v3/objects/contacts?properties=firstname,lastname,email,jobtitle,company,phone&limit=100&archived=false
Configure REST pagination using the $.paging.next.link cursor and map the results to your Fabric Lakehouse.

 

If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.





If you found this helpful, consider giving some Kudos.
If I answered your question or solved your problem, mark this post as the solution!

Proud to be a Super User!





View solution in original post

3 REPLIES 3
v-pgoloju
Community Support
Community Support

Hi @DataProcessor,

 

Thank you for reaching out to the Microsoft Fabric Forum Community, and special thanks to @tayloramy and @anilgavhane  for prompt and helpful responses.

 

Just following up to see if the Response provided by community members were helpful in addressing the issue.

If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.

 

Best regards,
Prasanna Kumar

anilgavhane
Super User
Super User

 

The native HubSpot connector in Azure Data Factory does not currently expose a UI field to specify custom contact properties. To retrieve more than the default fields (firstname, lastname, email), you need to use the REST connector and call HubSpot’s Contacts API directly.

 

Why You're Seeing Missing Data

The HubSpot connector in ADF only pulls default contact properties unless you explicitly specify additional fields. However, the connector’s UI does not support setting the properties= parameter required by HubSpot’s v3 CRM API. That’s why fields like job title, company, and phone are coming back as null—even though they exist in HubSpot and are mapped in your dataset.

 

Recommended Solution: Use REST Connector Instead

Step-by-Step:

 

  • Create a REST Linked Service in ADF instead of using the HubSpot connector.
  • Use HubSpot’s v3 Contacts API endpoint:

     

     

     

    GET /crm/v3/objects/contacts?properties=firstname,lastname,email,jobtitle,company,phone&limit=100&archived=false

     

    1. Configure pagination using the $.paging.next.link cursor.
    2. Map the results to your Lakehouse table using a Copy Activity.

      This approach allows you to specify exactly which fields you want and bypasses the limitations of the native connector.

@DataProcessor

tayloramy
Super User
Super User

Hi @DataProcessor,

 

You’re hitting a known gap: the native ADF “HubSpot” connector doesn’t expose a UI field to pass the properties= list that HubSpot’s v3 CRM APIs require. As a result, you only get the default contact properties (e.g., firstname, lastname, email) and everything else comes back null.


Use the ADF REST connector (not the HubSpot connector) and call HubSpot’s Contacts API directly, adding your desired fields via the properties query parameter. Example endpoint:
/crm/v3/objects/contacts?properties=firstname,lastname,email,jobtitle,company,phone&limit=100&archived=false
Configure REST pagination using the $.paging.next.link cursor and map the results to your Fabric Lakehouse.

 

If you found this helpful, consider giving some Kudos. If I answered your question or solved your problem, mark this post as the solution.





If you found this helpful, consider giving some Kudos.
If I answered your question or solved your problem, mark this post as the solution!

Proud to be a Super User!





Helpful resources

Announcements
FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Fabric Update Carousel

Fabric Monthly Update - March 2026

Check out the March 2026 Fabric update to learn about new features.