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
LiliLPo
Frequent Visitor

API as data source with dynamic date

Hi, 

 

I want to get data from an API. 

I need the data to be pulled each month for the previous month only, I dont need to append the data only monthly data. 

how do i write it so it will be equivalent 

to the following query in sql:

where datepart(month,UpdatedAt) = datepart(month,dateadd(month, -1,getdate()))

capture.png

 

Here is my API call:

= (PageNumber) =>

let
token_body = [
client_id = tokenClientId,
client_secret = tokenClientSecret,
grant_type = "client_credentials",
scope = tokenClientScope
],
tokenResponse = Json.Document(
Web.Contents(
tokenAddress,
[
Headers = [
ContentType ="application/x-www-form-urlencoded",
Accept = "application/json"
],
Content = Text.ToBinary(Uri.BuildQueryString(token_body))
]
)
),
Source = Json.Document(
Web.Contents("https://XXXXXXXXXXX.net/api/XXXXX/Get?receivedFromDateTime=2023-02-01&receivedToDateTime=2024-02-28&..."&Number.ToText(PageNumber),
[
Headers = [
Accept="application/json",
Authorization = "Bearer " & tokenResponse[access_token]
]
]
)
)
in
Source

 

thank you 

1 ACCEPTED SOLUTION
PhilipTreacy
Super User
Super User

Hi @LiliLPo 

 

You can use this code to create the Start and End dates for the previous month

 

 

    Now = Date.AddMonths(Date.From(DateTime.LocalNow()), -1)
    SOM = Date.ToText(Date.StartOfMonth(Now), [Format="yyyy-MM-dd"]),
    EOM = Date.ToText(Date.EndOfMonth(Now), [Format="yyyy-MM-dd"])

 

 

Then use these in your URL like this

 

Web.Contents("https://XXXXXXXXXXX.net/api/XXXXX/Get?receivedFromDateTime="&SOM&"&receivedToDateTime="&EOM&"&......."

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

2 REPLIES 2
LiliLPo
Frequent Visitor

THANK YOU SO MUCH 😀 it workedI

PhilipTreacy
Super User
Super User

Hi @LiliLPo 

 

You can use this code to create the Start and End dates for the previous month

 

 

    Now = Date.AddMonths(Date.From(DateTime.LocalNow()), -1)
    SOM = Date.ToText(Date.StartOfMonth(Now), [Format="yyyy-MM-dd"]),
    EOM = Date.ToText(Date.EndOfMonth(Now), [Format="yyyy-MM-dd"])

 

 

Then use these in your URL like this

 

Web.Contents("https://XXXXXXXXXXX.net/api/XXXXX/Get?receivedFromDateTime="&SOM&"&receivedToDateTime="&EOM&"&......."

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


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.