1.1.0
[ Base URL: home.telavox.se/api/capi ]https://home.telavox.se/api/capi/swagger.json
Telavox Customer API
When making requests to this API, implement an exponential backoff for retrying failed requests.
public Response retryRequest(Request request) {
int retries = 3;
int delay = 1000; // 1 second
for (int i = 0; i < retries; i++) {
try {
return httpClient.execute(request);
} catch (IOException e) {
Thread.sleep(delay);
delay *= 2; // Exponential backoff
}
}
throw new RuntimeException("Request failed after retries");
}