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
PoweredOut
Resolver I
Resolver I

Refresh Issue

Hi

 

I am trying to refresh data that I have pulled from HubSpot API. I get this issue.

This dataset includes a dynamic data source. Since dynamic data sources aren't refreshed in the Power BI service, this dataset won't be refreshed. Learn more: https://aka.ms/dynamic-data-sources.

I have tried Chris Webb's https://blog.crossjoin.co.uk/2016/08/16/using-the-relativepath-and-query-options-with-web-contents-i... using releative path but this throws an error

where in my query below should i build this in? 

each [WebCall = Json.Document(Web.Contents("https://api.hubapi.com/contacts/v1/lists/all/contacts/all?"& "&property=firstname" & "&property=lastname" & "&property=jobtitle" & "&property=email" & "&property=associatedcompanyid" & "&property=associatedcompanyid" & "&property=job_level" & "&property=hs_object_id" & "&property=hs_social_last_engagement" & "&count=100" & "&vidOffset="&Text.From([Last_Key])&"", [Headers=[ContentType="application/json", Authorization="Bearer myapikey"]]))

Thanks 

1 REPLY 1
lbendlin
Super User
Super User

As described in his subsequent article.  Handling Multiple URL Query Parameters With The Same Name Using Web.Contents In Power Query/Power BI...

each [WebCall = Json.Document(Web.Contents("https://api.hubapi.com/contacts/v1/lists/all/contacts/all",
[Query = [property={"firstname","lastname","jobtitle","email","associatedcompanyid","job_level","hs_object_id","hs_social_last_engagement"}, count="100", vidOffset=Text.From([Last_Key])], Headers=[ContentType="application/json", Authorization="Bearer myapikey"]]))

 

Helpful resources

Announcements
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.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

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 Power BI Update Carousel

Power BI Community Update - March 2026

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