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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
inawab
Frequent Visitor

Dynamic API Dataset refresh

Hi everyone,


I have an API with Date (from & to); I wanted to make the API dynamic to get the data from 3 days ago to 6 days ahead; I did the below query.


let
yesterday = Date.ToText(Date.From(DateTime.LocalNow() - #duration(3, 0, 0, 0)), "by-MM-dd"),
toDate = Date.ToText(Date.From(DateTime.LocalNow() + #duration(6, 0, 0, 0)), "by-MM-dd"),


baseAPIURL = "https://XXXX/XXXXX/XXXXX",


API URL = baseAPIURL & "from=" & yesterday & "&to=" & toDate,


Source = Json.Document(Web.Contents(apiUrl, [Headers=[#"Token"="XXXXXXXXXXXXXXXX"]]))
in
Source


it worked on the Desktop, but as a dataset, I can not refresh the dataset, it gave me the error
(This dataset includes a dynamic data source. This dataset won't be refreshed since active data sources aren't restored in the Power BI service.)

Someone online said to use the RelativePath function, but this function does not work with Date.

Can someone advise me if this issue has a solution???


Thank you all

1 REPLY 1
v-cgao-msft
Community Support
Community Support

Hi @inawab ,

Please try this:

let
    yesterday = Date.ToText(Date.From(DateTime.LocalNow() - #duration(3, 0, 0, 0)), "by-MM-dd"),
    toDate = Date.ToText(Date.From(DateTime.LocalNow() + #duration(6, 0, 0, 0)), "by-MM-dd"),
    baseAPIURL = "https://XXXX/XXXXX/XXXXX",
    apiUrl = baseAPIURL & "from=" & yesterday & "&to=" & toDate,
    Source = Json.Document(Web.Contents("https://XXXX/XXXXX/XXXXX", [RelativePath=apiUrl, Headers=[#"Token"="XXXXXXXXXXXXXXXX"]]))
in
    Source

Chris Webb's BI Blog: Using The RelativePath And Query Options With Web.Contents() In Power Query An...

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors