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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors