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
MarlonPereira
Regular Visitor

Iterate through table to make API calls with multiple parameters

Hello!

 

I have the following table T, containing pairs of keys/secrets to access an API:

 

KeySecret
abcd11234a
fgh25678b

 

Next, I have a parametrized function F to call an API method: 

 

 

 

= (page, key, secret) =>
 
   let body = "{
                   ""call"":""ListarClientes"",
                   ""app_key"":"&key&",
                   ""app_secret"":"&secret&",
 ...

 

 

 

 

Finally, I have a simple function I to iterate through multiple pages:

 

 

 

 

= List.Generate(()=>
[Result = try F(1, key, secret)otherwise null, Page = 1],
each [Result]<>null,
each [Result = try F([Page]+1, key, secret)otherwise null, Page = [Page]+1],
each [Result])

 

 

 

What I need: for each row of table T, run I, and store all the results into one table R- after this step, I already figured out how to transform the results.

 

I tried something like this

 

 

 

let
keys = A[key],
Cli = List.Transform(keys, each I)
in Cli

 

 

 

 But since I have more than one parameter (in this case, [key] and [secret]), it didn't work. Any sugestions?

 

Thanks in advance!

1 ACCEPTED SOLUTION

Hello, sorry for the delayed response, sudden shift in projects 😕

 

Your answer was on the right path. What I needed to do: Table.AddColumn(Source, "I", each I([key], [secret])). This way, I've managed to call multiple times each pair key/secret through loop function I.

 

Thanks!

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

instead of List.Generate use Table.AddColumn - column from function call.

Hello, sorry for the delayed response, sudden shift in projects 😕

 

Your answer was on the right path. What I needed to do: Table.AddColumn(Source, "I", each I([key], [secret])). This way, I've managed to call multiple times each pair key/secret through loop function I.

 

Thanks!

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