Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
So I have a couple functions that I'm trying to setup a delay using Function.InvokeAfter. I think I'm doing something wrong as I'm still hitting rate limits, and using Fiddler, I can see that there isn't a delay being implemented.
First Function PaginateAPI
(endpoint as text) =>
let
HasContToken = (responseHeaders) as logical => if (Record.HasFields(responseHeaders, {"next_page"})) then
true
else
false,
Pages = List.Generate(() =>
GetBase(endpoint, "1"),
each HasContToken(Value.Metadata(_)),
each try GetBase(
endpoint,
Text.Split(Text.Split(Value.Metadata(_)[next_page], "?page="){1}, "&"){0}
)
otherwise null
),
List = List.Combine(Pages),
Table = Table.FromList(List, Splitter.SplitByNothing(), null, null, ExtraValues.Error)
in
Table
GetBase
let
Source = (endpoint as text, page as text) =>
let
url = "https://someapi.com/",
Source = Json.Document(Web.Contents(url,
[
Headers = [
#"Accept"="application/json",
#"api-code"="SomeString",
#"Authorization"="Bearer " & APIKey
],
RelativePath = endpoint,
Query = [
page=page
]
]
)),
next_page = Source[meta][pagination][links][next],
final = Source[data] meta [ next_page = next_page ]
in
final
in
Source
I invoke the first Function PaginateAPI as such:
= Function.InvokeAfter(()=>PaginateAPI("sales"), #duration(0,0,0,5))
I'm thinking this is all I need to do to create the delay, but it seems like the delay isn't being implemented. Do I also need to add the Function.InvokeAfter somewhere in the functions as well?
Hi @PowerUser123 ,
See if this video can help you:
https://www.youtube.com/watch?v=Eg-025tN-7U
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
145 | |
79 | |
64 | |
52 | |
47 |
User | Count |
---|---|
217 | |
89 | |
76 | |
67 | |
60 |