Hi,
I am using an API token to import smartsheet report data into Power Query in MS Excel.
If I pass no information about pageSize or includeAll I get 100 rows returned.
If I use the following:
= Json.Document(Web.Contents("https://api.smartsheet.com/2.0/reports/8695992879998852/?pageSize=10013", [Headers=[Authorization="Bearer MY-API-KEY-GOES-HERE"]]))
then 10,000 rows are returned, despite the report being 10013 rows right now. So it seems there is a limit on pageSize.
If I use the following:
= Json.Document(Web.Contents("https://api.smartsheet.com/2.0/reports/8695992879998852/?includeAll=true", [Headers=[Authorization="Bearer MY-API-KEY-GOES-HERE"]]))
then I get 100 rows.
How can I retrieve all rows in my report via the API via Power Query please?