Closed behas closed 3 years ago
The limit is 1000. The problem here is with the proxy which seems not to be configured to accept long request lines. Explanations continue interally!
One can iterate through the next_page
handle, eg:
while api_response is None or page is not None:
api_response = api_instance.list_addresses(currency, page=page)
page = api_response.next_page
I received the following error when requesting more than 100 addresses in a single request:
If there is a limit, the API should inform the user about the limit. Is there a code snippet that shows how to retrieve a large number of address objects, possibly with several list_addresses calls?