Hi,
I was using the List Developers API (https://apidocs.apigee.com/management/apis/get/organizations/%7Borg_name%7D/developers) to get data about registrations. This was working fine until we reached the point where more than 1000 developers have registered in our developer portal, now I can't get the whole list of developers, just a slice of 1000 of the registered users.
In fact that isn't currently the data that I need, I just need to be able to get data about the developers that signed up in a particular calendar month. Is there a mechanism by which is can do this task simply (either by API or in an interface)?
Solved! Go to Solution.
So after some help from our Apigee contacts I understood that the solution is to use the API with the startkey option. If you call the API and get the 1st 1000 results you can then take the email address of the last entry in the list and put that into the startkey parameter for your next call - then you will get the next <1000 entries starting from that developer. While it means that you will count that developer twice (unless you take steps to deduplicate), using this approach you can get all of the registered developers.