Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Add API result to each row when adding a column using Invoke function

hello

 

I am trying to Invoke a function that is pulling data from an API. The function takes IDs from the table where I am adding the column.

 

Here is my function 

 

 

let
    Source =(ID_1, ID_2 as text) => let
           Source = each Json.Document(Web.Contents("https://fake.api.com/v3/rest/fake1/" & ID_1 & "/fake2/" & ID_2 & "/fake3?limit=1&offset=0" , [Headers=[Authorization= "Bearer myapikey"]])),
    #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error)
    in      
    #"Converted to Table"
in
    Source

 

the table is like this

ID_1ID_2
6e9e7742-d651-44f6-b2a1-6d1edcd94ace17e61aba-19f1-49d6-a07c-aa0085b38b5f
c89f89b2-bfd6-4984-b672-ad3f20a1fb8ca4f06500-2a2a-4318-a9ab-bfeae705e7d3

 

I get this error message when invoking the function 

Expression.Error: We cannot convert a value of type Function to type List.
Details:
Value=[Function]

 

Thanks

Joe
Type=[Type]

1 ACCEPTED SOLUTION
Anonymous
Not applicable

By removing the "each" before  Json.Document helped it work 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

By removing the "each" before  Json.Document helped it work 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.