API Limits and Time Out

Zachary Hunter

I am working with API calls for automation. Starting out, I have attempted to make a call for fetching all users (GET /api/author/users). This works fine, but the results only include the first 20 users from the list. Is there something I need to include in order to get the full list of users?

On a similar note, when trying to run a specific report, I am running into a time-out. Are there any options to break up a report into chunks or create a report in one call and then download it via another call?

 

0

Comments

1 comment

  • Comment author
    Marcelo Romero

    To get the whole list of users, simple add the URL "limit" parameter to your call. It would look something like "GET /api/author/users?limit=100"

    0

Please sign in to leave a comment.