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
glynwilks
Helper I
Helper I

Dynamic Date in Web Query

I am trying to do a POST request using the blank query editior. I need to include a body query within the source to specify the date in yyyy-mm-dd format. If I manually type the date i.e. 2022-05-22 then my query pulls data from the site. However, I am trying to make the query reference today's date, so that at any point in time I am referencing the latest data. Unfortunately the date is required in the body for this provider.

 

I am struggling to pull today's date, in the format, and pass it through to my URL. Below is the working query, where I specifiy the date manually. How do I make that date always be todays date?

 

let

body = "{""Dates"":""2022-05-22""}",
Source = Json.Document(Web.Contents("https://app.officevibe.com/api/v2/engagement", [Headers=[Authorization="Bearer fakeapikey123423424242424", #"Content-Type"="application/json"], Content = Text.ToBinary(body)]))
in
Source

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

For body use this

body = "{""Dates"":"&""""&Date.ToText(Date.From(DateTime.FixedLocalNow()),"yyyy-MM-dd")&""""&"}",

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

For body use this

body = "{""Dates"":"&""""&Date.ToText(Date.From(DateTime.FixedLocalNow()),"yyyy-MM-dd")&""""&"}",

Thank you very much Vijay. That worked a treat.

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