© 2024 Parallels International GmbH. All rights reserved.
Tests a URL that leads to a client IP detection service. If the URL is correct and the service works as expected, the test should return the IP of the Connection Broker.
Success
const response = await fetch('/api/DetectClientIP/Test', { method: 'GET', headers: {}, }); const data = await response.json();
text