Given that the datascope select api typically has a rate limit duration of 60 seconds, why would I have a wait time of less than 60 seconds on an asynchronous request, given that the request will be returned as soon as a result is available anyway?
Take the following example, an asynchronous request takes exactly 45 seconds to complete. If I have a wait time (default) of 30 seconds, then I will make 2 requests to the api within the 45 second period. However, if I have a wait time of 60 seconds, I will only make 1 request. In both cases, I will still receive the response within 45 seconds.
I feel that I must be missing something here, so would appreciate some info on this. Thanks.