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
Bastian
New Member

Generating a list from a REST response with pagination

Hi Experts,

beeing new to Power Query I am trying to access the pages of a REST response and transform those to one single list by using List.Generate.

Unfortunately I don't receive the full list. Instead the produced list contains only one Element "Error" which only contains the result of the first page. Any Ideas?

 

(The API documetation can be found here: https://apidocs.tempo.io/#worklogs )

 

My code is as follows:

 

From="2021-08-01",
To="2021-08-31",
tempoURL= "https://api.tempo.io",
tempoPath = "/core/3/worklogs",
tempoQuery = "?from=" &From& "&to=" &To& "&limit=10",

Token="XXXXX",

finalResult=List.Generate( ()=> 
    [
        URL = tempoURL&tempoPath&tempoQuery,
        Result = Json.Document(Web.Contents(URL, [Headers=[Authorization="Bearer " & Token]]))
    ],
    each [URL] <> null,
    each [
        URL = [Result][metadata][next],
        Result = Json.Document(Web.Contents(URL,[Headers=[Authorization="Bearer " & Token]]))
    ]
)
in
    finalResult

 

 

Which produces the following:

 

Bastian_2-1635285986402.png

Bastian_3-1635286011307.png

Bastian_4-1635286033781.png

Bastian_5-1635286086005.png

Bastian_6-1635286146607.png

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Since your "next" URL is well structured with Offset and Limit  you could choose to fetch the total rowcount in your first call and the use List.Generate to create all the urls  (and maybe up the limit a bit so you don't have to fetch in groups of 10). Then it would be a simple Table.AddColumn with the Web.Contents of the generated URLs.

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

Since your "next" URL is well structured with Offset and Limit  you could choose to fetch the total rowcount in your first call and the use List.Generate to create all the urls  (and maybe up the limit a bit so you don't have to fetch in groups of 10). Then it would be a simple Table.AddColumn with the Web.Contents of the generated URLs.

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