Can you increase row limit returned in Reporting API Call? | Community
Skip to main content
Level 2
November 22, 2023
Question

Can you increase row limit returned in Reporting API Call?

  • November 22, 2023
  • 2 replies
  • 950 views

Currently it is set to 50K but is it possible to change that to a larger limit?  

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

Jennifer_Dungan
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
November 22, 2023

I don't know if you can increase the row limit beyond 50K, but I think you can use pagination to make an secondary call for the next 50K rows?

 

"settings": { "countRepeatInstances": true, "includeAnnotations": true, "limit": 10, "page": 0, "nonesBehavior": "exclude-nones"

 

There is a settings area that allows you to set limit and page... so if you might be able to set a higher limit, but if not, you can set a 50K limit, then call additional pages of data?

 

I haven't used this myself, so it might need some testing.... 

Level 5
November 24, 2023

The number of rows returned in a single API call is determined by the API itself. The ability to increase the row limit may depend on your Adobe Analytics subscription and permissions.

Agreeing with @jennifer_dungan , if your API supports pagination then you might be able to increase additional rows by making multiple requests and specifying a page number or offset.