API Limits and Time Out
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?
Comments
1 comment
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"
Please sign in to leave a comment.