Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext 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
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()))
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
Solved! Go to Solution.
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
Proud to be a Super User!
THANK YOU SO MUCH 😀 it workedI
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
Proud to be a Super User!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 30 | |
| 23 |